Implements inventory system, wip
This commit is contained in:
+122
-3
@@ -244,6 +244,17 @@
|
||||
},
|
||||
"wis": {
|
||||
"label": "Wisdom"
|
||||
},
|
||||
"movementRating": {
|
||||
"label": "Movement Rating",
|
||||
"subAttribute": { "label": "Sub-Attribute" },
|
||||
"other": { "label": "Other" },
|
||||
"reduction": { "label": "Reduction" }
|
||||
},
|
||||
"burden": {
|
||||
"label": "Burden",
|
||||
"subAttribute": { "label": "Sub-Attribute" },
|
||||
"other": { "label": "Other" }
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -361,6 +372,9 @@
|
||||
"money": {
|
||||
"label": "Money unit"
|
||||
},
|
||||
"equipped": {
|
||||
"label": "Equipped"
|
||||
},
|
||||
"isKit": {
|
||||
"label": "Is Kit?"
|
||||
},
|
||||
@@ -523,6 +537,17 @@
|
||||
"Challenges": "Challenges",
|
||||
"HP": "HP",
|
||||
"HPTemp": "Temporary Hit Points",
|
||||
"movementRating": "Movement Rating",
|
||||
"burdenCharacter": "Burden",
|
||||
"packBurden": "Pack Burden",
|
||||
"container": "Container",
|
||||
"containers": "Containers",
|
||||
"consumables": "Consumables",
|
||||
"loot": "Loot",
|
||||
"kits": "Kits",
|
||||
"weapons": "Weapons",
|
||||
"encLoad": "Enc. Load",
|
||||
"reduction": "Reduction",
|
||||
"Movement": "Movement",
|
||||
"Saves": "Saves",
|
||||
"app": "APP",
|
||||
@@ -898,13 +923,41 @@
|
||||
"skill": "Skills list",
|
||||
"skills": "Skills - Your character's skills and abilities",
|
||||
"racialAbilities": "Racial Abilities from your character's race and sub-race",
|
||||
"abilities": "Abilities acquired through class, paths, or other sources"
|
||||
"abilities": "Abilities acquired through class, paths, or other sources",
|
||||
"movementRating": "Movement Rating (MR): 3 + Sub-Attribute + Other - Reduction",
|
||||
"burdenCharacter": "Burden: Base Burden + Sub-Attribute + Other (max); Used = sum of equipped item load",
|
||||
"packBurden": "Pack Burden capacity of this container",
|
||||
"uses": "Remaining uses / Max uses",
|
||||
"useConsumable": "Use this consumable",
|
||||
"toggleEquipped": "Toggle equipped (affects Pack Burden)",
|
||||
"addWeapon": "Add weapon",
|
||||
"addArmor": "Add armor",
|
||||
"addShield": "Add shield",
|
||||
"addConsumable": "Add consumable",
|
||||
"addKit": "Add kit",
|
||||
"addEquipment": "Add equipment",
|
||||
"addLoot": "Add loot",
|
||||
"addContainer": "Add container",
|
||||
"addRacialAbility": "Add racial ability",
|
||||
"addAbility": "Add ability",
|
||||
"excessBurden": "Equipped burden exceeds max — excess reduces Movement Rating"
|
||||
},
|
||||
"RollSavingThrow": "Roll Saving Throw",
|
||||
"Dialog": {
|
||||
"useConsumable": "Use Consumable",
|
||||
"useConsumableContent": "Use one charge of <strong>{name}</strong>? ({uses} remaining)"
|
||||
},
|
||||
"Message": {
|
||||
"selectCoreSkill": "You must select a Core Skill for your character. Each character chooses one Core Skill at creation.",
|
||||
"dropRace": "Drag and drop a Race item here",
|
||||
"dropClass": "Drag and drop a Class item here"
|
||||
"dropClass": "Drag and drop a Class item here",
|
||||
"noContainers": "No containers in inventory",
|
||||
"noConsumables": "No consumables in inventory",
|
||||
"noLoot": "No loot in inventory",
|
||||
"noWeapons": "No weapons",
|
||||
"noArmor": "No armor or shields",
|
||||
"noKits": "No kits",
|
||||
"noEquipment": "No equipment"
|
||||
},
|
||||
"Miracle": {
|
||||
"FIELDS": {
|
||||
@@ -1381,6 +1434,69 @@
|
||||
"subraceAbilityDescription": {
|
||||
"label": "Sub-race Ability Description"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
},
|
||||
"baseBurden": {
|
||||
"label": "Base Burden"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Container": {
|
||||
"FIELDS": {
|
||||
"packBurden": {
|
||||
"label": "Pack Burden (Capacity)"
|
||||
},
|
||||
"encLoad": {
|
||||
"label": "Enc. Load"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"equipped": {
|
||||
"label": "Equipped"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Consumable": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"usesMax": {
|
||||
"label": "Max Uses"
|
||||
},
|
||||
"uses": {
|
||||
"label": "Uses"
|
||||
},
|
||||
"encLoad": {
|
||||
"label": "Enc. Load"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Loot": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"encLoad": {
|
||||
"label": "Enc. Load"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
}
|
||||
@@ -1507,7 +1623,10 @@
|
||||
"weapon": "Weapon",
|
||||
"race": "Race",
|
||||
"class": "Class",
|
||||
"character-path": "Character Path"
|
||||
"character-path": "Character Path",
|
||||
"container": "Container",
|
||||
"consumable": "Consumable",
|
||||
"loot": "Loot"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user