changed availability options to include "unset"

Additions:
- item availability "unset" (with localization)

Changes:
- item availability "none" -> "nowhere"

Fixes:
- fixed wrong default item availability in template.json
This commit is contained in:
Gesina Schwalbe 2020-12-28 21:44:47 +01:00
parent 123c56a572
commit e0d8e42812
4 changed files with 6 additions and 4 deletions

View file

@ -26,7 +26,7 @@ interface DS4ItemBase {
interface DS4ItemPhysical {
quantity: number;
price: number;
availability: "hamlet" | "village" | "city" | "elves" | "dwarves" | "none";
availability: "hamlet" | "village" | "city" | "elves" | "dwarves" | "nowhere" | "unset";
storageLocation: string;
}