Fix char sheet iteration
This commit is contained in:
765
lang/en.json
765
lang/en.json
@@ -1,323 +1,168 @@
|
||||
{
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"character": "Character",
|
||||
"vehicle": "Vehicle",
|
||||
"creature": "Creature",
|
||||
"starship": "Starship"
|
||||
},
|
||||
"Item": {
|
||||
"weapon": "Weapon",
|
||||
"armor": "Armor",
|
||||
"equipment": "Equipment",
|
||||
"psionic": "Psionic",
|
||||
"talent": "Talent",
|
||||
"creature-trait": "Creature Trait",
|
||||
"creature-ability": "Creature Ability",
|
||||
"implant": "Implant",
|
||||
"language": "Language"
|
||||
}
|
||||
},
|
||||
"FTLNOMAD": {
|
||||
"TechAge": {
|
||||
"NoTech": "No Tech",
|
||||
"EarlyPrimitive": "Early Primitive",
|
||||
"LatePrimitive": "Late Primitive",
|
||||
"EarlyMechanical": "Early Mechanical",
|
||||
"LateMechanical": "Late Mechanical",
|
||||
"EarlyAtomic": "Early Atomic",
|
||||
"LateAtomic": "Late Atomic",
|
||||
"EarlySpace" : "Early Space",
|
||||
"LateSpace" : "Late Space",
|
||||
"EarlyInterstellar" : "Early Interstellar",
|
||||
"LateInterstellar" : "Late Interstellar",
|
||||
"EarlyGalactic" : "Early Galactic",
|
||||
"LateGalactic" : "Late Galactic",
|
||||
"Cosmic" : "Cosmic"
|
||||
},
|
||||
"Character": {
|
||||
"FIELDS": {
|
||||
"concept": {
|
||||
"label": "Concept"
|
||||
},
|
||||
"age": {
|
||||
"label": "Age"
|
||||
},
|
||||
"gender": {
|
||||
"label": "Gender"
|
||||
},
|
||||
"hair": {
|
||||
"label": "Hair"
|
||||
},
|
||||
"eyes": {
|
||||
"label": "Eyes"
|
||||
},
|
||||
"height": {
|
||||
"label": "Height"
|
||||
},
|
||||
"home": {
|
||||
"label": "Home"
|
||||
},
|
||||
"birthplace": {
|
||||
"label": "Birthplace"
|
||||
},
|
||||
"skills:": {
|
||||
"str": {
|
||||
"label": "Strength"
|
||||
},
|
||||
"dex": {
|
||||
"label": "Dexterity"
|
||||
},
|
||||
"int": {
|
||||
"label": "Intelligence"
|
||||
},
|
||||
"pow": {
|
||||
"label": "Power"
|
||||
},
|
||||
"con": {
|
||||
"label": "Constitution"
|
||||
},
|
||||
"char": {
|
||||
"label": "Charisma"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Creature": {
|
||||
"FIELDS": {
|
||||
"damageBonus": {
|
||||
"label": "Dmg.Bonus"
|
||||
},
|
||||
"resources": {
|
||||
"permanentRating": {
|
||||
"label": "Permanent Rating"
|
||||
},
|
||||
"hand": {
|
||||
"label": "Hand"
|
||||
},
|
||||
"stowed": {
|
||||
"label": "Stowed"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Storage"
|
||||
}
|
||||
},
|
||||
"biodata": {
|
||||
"feature": {
|
||||
"label": "Feature"
|
||||
},
|
||||
"adaptedToViolence": {
|
||||
"label": "Adapted to violence"
|
||||
},
|
||||
"adaptedToHelplessness": {
|
||||
"label": "Adapted to helplessness"
|
||||
},
|
||||
"harshness": {
|
||||
"label": "Harshness"
|
||||
},
|
||||
"age": {
|
||||
"label": "Age"
|
||||
},
|
||||
"gender": {
|
||||
"label": "Gender"
|
||||
},
|
||||
"hair": {
|
||||
"label": "Hair"
|
||||
},
|
||||
"eyes": {
|
||||
"label": "Eyes"
|
||||
},
|
||||
"height": {
|
||||
"label": "Height"
|
||||
},
|
||||
"home": {
|
||||
"label": "Home"
|
||||
},
|
||||
"birthplace": {
|
||||
"label": "Birthplace"
|
||||
},
|
||||
"label": "Biodata"
|
||||
},
|
||||
"characteristics:": {
|
||||
"str": {
|
||||
"label": "Strength"
|
||||
},
|
||||
"dex": {
|
||||
"label": "Dexterity"
|
||||
},
|
||||
"int": {
|
||||
"label": "Intelligence"
|
||||
},
|
||||
"pow": {
|
||||
"label": "Power"
|
||||
},
|
||||
"con": {
|
||||
"label": "Constitution"
|
||||
},
|
||||
"char": {
|
||||
"label": "Charisma"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Skill": {
|
||||
"Unnatural": "Unnatural",
|
||||
"Melee": "Melee Weapons",
|
||||
"Firearms": "Firearms",
|
||||
"Athletics": "Athletics",
|
||||
"UnarmedCombat": "Unarmed Combat",
|
||||
"RangedWeapons": "Ranged Weapons",
|
||||
"FirearmsBeams": "Firearms / Beam Weapons",
|
||||
"FIELDS": {
|
||||
"isAdversary": {
|
||||
"label": "Adversary"
|
||||
},
|
||||
"settings": {
|
||||
"label": "Settings era"
|
||||
},
|
||||
"diceEvolved": {
|
||||
"label": "Can increase on failure"
|
||||
},
|
||||
"bonus" :{
|
||||
"label": "Bonus"
|
||||
},
|
||||
"base": {
|
||||
"label": "Base"
|
||||
},
|
||||
"rollFailed": {
|
||||
"label": "Roll Failed"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Equipment": {
|
||||
"FIELDS": {
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Psionic": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"isAdvantage" :{
|
||||
"label": "Provide advantage"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Weapon": {
|
||||
"Types": {
|
||||
"Melee": "Melee",
|
||||
"Projectile": "Projectile",
|
||||
"Energy": "Energy",
|
||||
"Heavy": "Heavy",
|
||||
"Grenade": "Grenade/Explosive",
|
||||
"Vehicle": "Vehicle"
|
||||
},
|
||||
"Range": {
|
||||
"Melee": "Melee",
|
||||
"Handgun": "Handgun",
|
||||
"Rifle": "Rifle",
|
||||
"LongRange": "Long Range"
|
||||
},
|
||||
"FIELDS": {
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
},
|
||||
"rangeType": {
|
||||
"label": "Range"
|
||||
},
|
||||
"weaponType": {
|
||||
"label": "Type"
|
||||
},
|
||||
"damage": {
|
||||
"label": "Damage"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Armor": {
|
||||
"FIELDS": {
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"protection": {
|
||||
"label": "Protection"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Language": {
|
||||
"Character": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
"age": {
|
||||
"label": "Age"
|
||||
},
|
||||
"birthplace": {
|
||||
"label": "Birthplace"
|
||||
},
|
||||
"concept": {
|
||||
"label": "Concept"
|
||||
},
|
||||
"species": {
|
||||
"label": "Species"
|
||||
},
|
||||
"archetype": {
|
||||
"label": "Archetype"
|
||||
},
|
||||
"eyes": {
|
||||
"label": "Eyes"
|
||||
},
|
||||
"gender": {
|
||||
"label": "Gender"
|
||||
},
|
||||
"hair": {
|
||||
"label": "Hair"
|
||||
},
|
||||
"height": {
|
||||
"label": "Height"
|
||||
},
|
||||
"home": {
|
||||
"label": "Home"
|
||||
},
|
||||
"health": {
|
||||
"staminaValue": {
|
||||
"label": "Current"
|
||||
},
|
||||
"staminaMax": {
|
||||
"label": "Max"
|
||||
},
|
||||
"wounds": {
|
||||
"label": "Wounds"
|
||||
},
|
||||
"label": "Stamina"
|
||||
},
|
||||
"skills:": {
|
||||
"combat": {
|
||||
"label": "Combat"
|
||||
},
|
||||
"knowledge": {
|
||||
"label": "Knowledge"
|
||||
},
|
||||
"physical": {
|
||||
"label": "Physical"
|
||||
},
|
||||
"social": {
|
||||
"label": "Social"
|
||||
},
|
||||
"stealth": {
|
||||
"label": "Stealth"
|
||||
},
|
||||
"technology": {
|
||||
"label": "Technology"
|
||||
},
|
||||
"vehicles": {
|
||||
"label": "Vehicles"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Vehicle": {
|
||||
"Chat": {},
|
||||
"Creature": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
"biodata": {
|
||||
"adaptedToHelplessness": {
|
||||
"label": "Adapted to helplessness"
|
||||
},
|
||||
"adaptedToViolence": {
|
||||
"label": "Adapted to violence"
|
||||
},
|
||||
"age": {
|
||||
"label": "Age"
|
||||
},
|
||||
"birthplace": {
|
||||
"label": "Birthplace"
|
||||
},
|
||||
"eyes": {
|
||||
"label": "Eyes"
|
||||
},
|
||||
"feature": {
|
||||
"label": "Feature"
|
||||
},
|
||||
"gender": {
|
||||
"label": "Gender"
|
||||
},
|
||||
"hair": {
|
||||
"label": "Hair"
|
||||
},
|
||||
"harshness": {
|
||||
"label": "Harshness"
|
||||
},
|
||||
"height": {
|
||||
"label": "Height"
|
||||
},
|
||||
"home": {
|
||||
"label": "Home"
|
||||
},
|
||||
"label": "Biodata"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
"characteristics:": {
|
||||
"char": {
|
||||
"label": "Charisma"
|
||||
},
|
||||
"con": {
|
||||
"label": "Constitution"
|
||||
},
|
||||
"dex": {
|
||||
"label": "Dexterity"
|
||||
},
|
||||
"int": {
|
||||
"label": "Intelligence"
|
||||
},
|
||||
"pow": {
|
||||
"label": "Power"
|
||||
},
|
||||
"str": {
|
||||
"label": "Strength"
|
||||
}
|
||||
},
|
||||
"surfaceSpeed": {
|
||||
"label": "Surface Speed"
|
||||
"damageBonus": {
|
||||
"label": "Dmg.Bonus"
|
||||
},
|
||||
"airSpeed": {
|
||||
"label": "Air Speed"
|
||||
},
|
||||
"armor": {
|
||||
"label": "Armor"
|
||||
},
|
||||
"settings": {
|
||||
"label": "Settings era"
|
||||
},
|
||||
"crew": {
|
||||
"label": "Crew"
|
||||
},
|
||||
"state": {
|
||||
"label": "State"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreatureTrait": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"isAdvantage": {
|
||||
"label": "Provide advantage"
|
||||
"resources": {
|
||||
"hand": {
|
||||
"label": "Hand"
|
||||
},
|
||||
"permanentRating": {
|
||||
"label": "Permanent Rating"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Storage"
|
||||
},
|
||||
"stowed": {
|
||||
"label": "Stowed"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -331,10 +176,23 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Implant": {
|
||||
"CreatureTrait": {
|
||||
"FIELDS": {
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"isAdvantage": {
|
||||
"label": "Provide advantage"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Delete": "Delete",
|
||||
"Dialog": {},
|
||||
"Edit": "Edit",
|
||||
"Equipment": {
|
||||
"FIELDS": {
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
@@ -342,91 +200,260 @@
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Starship": {
|
||||
"Implant": {
|
||||
"FIELDS": {
|
||||
"value": {
|
||||
"label": "Value"
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Label": {
|
||||
"combat": "Combat",
|
||||
"physical": "Physical",
|
||||
"social": "Social",
|
||||
"stealth": "Stealth",
|
||||
"technology": "Technology",
|
||||
"vehicles": "Vehicles",
|
||||
"knowledge": "Knowledge",
|
||||
"Stamina": "Stamina",
|
||||
"equipments": "Equipment",
|
||||
"Rank": "Rank",
|
||||
"HP": "HP",
|
||||
"Unarmed": "Unarmed",
|
||||
"Vehicle": "Vehicle",
|
||||
"armor": "Armor",
|
||||
"armors": "Armors",
|
||||
"biodata": "Biodata",
|
||||
"biography": "Biography",
|
||||
"character": "Character",
|
||||
"creature": "Creature",
|
||||
"criticalFailure": "Critical Failure",
|
||||
"criticalSuccess": "Critical Success",
|
||||
"current": "Current",
|
||||
"damage": "Damage",
|
||||
"damageShort": "Dmg",
|
||||
"description": "Description",
|
||||
"equipment": "Equipment",
|
||||
"experience": "Experience",
|
||||
"failure": "Failure",
|
||||
"finalScore": "Final Score",
|
||||
"languages": "Languages",
|
||||
"malus": "Malus",
|
||||
"max": "Max",
|
||||
"maximum": "Maximum",
|
||||
"modifier": "Modifier",
|
||||
"multiplier": "Multiplier",
|
||||
"newArmor": "New Armor",
|
||||
"newWeapon": "New Weapon",
|
||||
"notes": "Notes",
|
||||
"psionics": "Psionics",
|
||||
"rollView": "Roll View",
|
||||
"skill": "Skill",
|
||||
"skillRoll": "Skill Roll",
|
||||
"skills": "Skills",
|
||||
"status": "Status",
|
||||
"success": "Success",
|
||||
"talents": "Talents",
|
||||
"targetScore": "Target Score",
|
||||
"titleSkill": "Skill Roll",
|
||||
"titleWeapon": "Weapon Roll",
|
||||
"total": "Total",
|
||||
"totalScore": "Total Score",
|
||||
"weapons": "Weapons"
|
||||
},
|
||||
"Language": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Notifications": {},
|
||||
"Psionic": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"isAdvantage": {
|
||||
"label": "Provide advantage"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Roll": {
|
||||
"cancel": "Cancel",
|
||||
"roll": "Roll",
|
||||
"skill": "Skill"
|
||||
},
|
||||
"Skill": {
|
||||
"Athletics": "Athletics",
|
||||
"FIELDS": {
|
||||
"base": {
|
||||
"label": "Base"
|
||||
},
|
||||
"bonus": {
|
||||
"label": "Bonus"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"diceEvolved": {
|
||||
"label": "Can increase on failure"
|
||||
},
|
||||
"isAdversary": {
|
||||
"label": "Adversary"
|
||||
},
|
||||
"rollFailed": {
|
||||
"label": "Roll Failed"
|
||||
},
|
||||
"settings": {
|
||||
"label": "Settings era"
|
||||
}
|
||||
},
|
||||
"Firearms": "Firearms",
|
||||
"FirearmsBeams": "Firearms / Beam Weapons",
|
||||
"Melee": "Melee Weapons",
|
||||
"RangedWeapons": "Ranged Weapons",
|
||||
"UnarmedCombat": "Unarmed Combat",
|
||||
"Unnatural": "Unnatural"
|
||||
},
|
||||
"Starship": {
|
||||
"FIELDS": {
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"value": {
|
||||
"label": "Value"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Talent": {
|
||||
"FIELDS": {
|
||||
"isAdvantage": {
|
||||
"label": "Provide advantage"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"isAdvantage": {
|
||||
"label": "Provide advantage"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Label": {
|
||||
"creature": "Creature",
|
||||
"Unarmed": "Unarmed",
|
||||
"multiplier": "Multiplier",
|
||||
"Vehicle": "Vehicle",
|
||||
"titleSkill": "Skill Roll",
|
||||
"titleWeapon": "Weapon Roll",
|
||||
"biodata": "Biodata",
|
||||
"skill": "Skill",
|
||||
"modifier": "Modifier",
|
||||
"rollView": "Roll View",
|
||||
"character": "Character",
|
||||
"description": "Description",
|
||||
"total": "Total",
|
||||
"skills": "Skills",
|
||||
"damage": "Damage",
|
||||
"armor": "Armor",
|
||||
"malus": "Malus",
|
||||
"experience": "Experience",
|
||||
"maximum": "Maximum",
|
||||
"equipment": "Equipment",
|
||||
"biography": "Biography",
|
||||
"notes": "Notes",
|
||||
"weapons": "Weapons",
|
||||
"HP": "HP",
|
||||
"current": "Current",
|
||||
"max": "Max",
|
||||
"totalScore": "Total Score",
|
||||
"skillRoll": "Skill Roll",
|
||||
"finalScore": "Final Score",
|
||||
"failure": "Failure",
|
||||
"success": "Success",
|
||||
"criticalSuccess": "Critical Success",
|
||||
"criticalFailure": "Critical Failure",
|
||||
"targetScore": "Target Score",
|
||||
"armors": "Armors",
|
||||
"psionics": "Psionics",
|
||||
"talents": "Talents",
|
||||
"languages": "Languages",
|
||||
"damageShort": "Dmg",
|
||||
"status": "Status",
|
||||
"newWeapon": "New Weapon",
|
||||
"newArmor": "New Armor"
|
||||
"TechAge": {
|
||||
"Cosmic": "Cosmic",
|
||||
"EarlyAtomic": "Early Atomic",
|
||||
"EarlyGalactic": "Early Galactic",
|
||||
"EarlyInterstellar": "Early Interstellar",
|
||||
"EarlyMechanical": "Early Mechanical",
|
||||
"EarlyPrimitive": "Early Primitive",
|
||||
"EarlySpace": "Early Space",
|
||||
"LateAtomic": "Late Atomic",
|
||||
"LateGalactic": "Late Galactic",
|
||||
"LateInterstellar": "Late Interstellar",
|
||||
"LateMechanical": "Late Mechanical",
|
||||
"LatePrimitive": "Late Primitive",
|
||||
"LateSpace": "Late Space",
|
||||
"NoTech": "No Tech"
|
||||
},
|
||||
"Edit": "Edit",
|
||||
"Delete": "Delete",
|
||||
"ToggleSheet": "Toggle Sheet",
|
||||
"Warning": { },
|
||||
"Dialog": {
|
||||
"Tooltip": {},
|
||||
"Vehicle": {
|
||||
"FIELDS": {
|
||||
"airSpeed": {
|
||||
"label": "Air Speed"
|
||||
},
|
||||
"armor": {
|
||||
"label": "Armor"
|
||||
},
|
||||
"crew": {
|
||||
"label": "Crew"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"notes": {
|
||||
"label": "Notes"
|
||||
},
|
||||
"settings": {
|
||||
"label": "Settings era"
|
||||
},
|
||||
"state": {
|
||||
"label": "State"
|
||||
},
|
||||
"surfaceSpeed": {
|
||||
"label": "Surface Speed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Roll": {
|
||||
"skill": "Skill",
|
||||
"roll": "Roll",
|
||||
"cancel": "Cancel"
|
||||
"Warning": {},
|
||||
"Weapon": {
|
||||
"FIELDS": {
|
||||
"cost": {
|
||||
"label": "Cost"
|
||||
},
|
||||
"damage": {
|
||||
"label": "Damage"
|
||||
},
|
||||
"description": {
|
||||
"label": "Description"
|
||||
},
|
||||
"enc": {
|
||||
"label": "Enc"
|
||||
},
|
||||
"rangeType": {
|
||||
"label": "Range"
|
||||
},
|
||||
"techAge": {
|
||||
"label": "Tech Age"
|
||||
},
|
||||
"weaponType": {
|
||||
"label": "Type"
|
||||
}
|
||||
},
|
||||
"Range": {
|
||||
"Handgun": "Handgun",
|
||||
"LongRange": "Long Range",
|
||||
"Melee": "Melee",
|
||||
"Rifle": "Rifle"
|
||||
},
|
||||
"Types": {
|
||||
"Energy": "Energy",
|
||||
"Grenade": "Grenade/Explosive",
|
||||
"Heavy": "Heavy",
|
||||
"Melee": "Melee",
|
||||
"Projectile": "Projectile",
|
||||
"Vehicle": "Vehicle"
|
||||
}
|
||||
}
|
||||
},
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"character": "Character",
|
||||
"creature": "Creature",
|
||||
"starship": "Starship",
|
||||
"vehicle": "Vehicle"
|
||||
},
|
||||
"Tooltip": {
|
||||
},
|
||||
"Chat": {
|
||||
},
|
||||
"Notifications": {
|
||||
"Item": {
|
||||
"armor": "Armor",
|
||||
"creature-ability": "Creature Ability",
|
||||
"creature-trait": "Creature Trait",
|
||||
"equipment": "Equipment",
|
||||
"implant": "Implant",
|
||||
"language": "Language",
|
||||
"psionic": "Psionic",
|
||||
"talent": "Talent",
|
||||
"weapon": "Weapon"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user