This commit is contained in:
@@ -41,6 +41,13 @@ export const TECH_AGES = {
|
||||
"cosmic": { id: "cosmic", label: "FTLNOMAD.TechAge.Cosmic", level: 13 }
|
||||
}
|
||||
|
||||
export const ROBOT_SIZES = {
|
||||
"tiny": { id: "tiny", label: "FTLNOMAD.Robot.Size.Tiny" },
|
||||
"small": { id: "small", label: "FTLNOMAD.Robot.Size.Small" },
|
||||
"medium": { id: "medium", label: "FTLNOMAD.Robot.Size.Medium" },
|
||||
"large": { id: "large", label: "FTLNOMAD.Robot.Size.Large" },
|
||||
"giant": { id: "giant", label: "FTLNOMAD.Robot.Size.Giant" }
|
||||
}
|
||||
|
||||
export const WEAPON_TYPES = {
|
||||
"melee": { id: "melee", label: "FTLNOMAD.Weapon.Types.Melee" },
|
||||
@@ -72,6 +79,16 @@ export const ATTACK_MODIFIERS = {
|
||||
"aware": -1
|
||||
}
|
||||
|
||||
export const DAMAGE_MODIFIER_CHOICES = [
|
||||
{ id: "-3", label: "-3", value: "-3" },
|
||||
{ id: "-2", label: "-2", value: "-2" },
|
||||
{ id: "-1", label: "-1", value: "-1" },
|
||||
{ id: "0", label: "0", value: "0" },
|
||||
{ id: "1", label: "+1", value: "1" },
|
||||
{ id: "2", label: "+2", value: "2" },
|
||||
{ id: "3", label: "+3", value: "3" }
|
||||
]
|
||||
|
||||
export const TRIAGE_RESULTS = {
|
||||
"none": { id: "none", dice: 0, label: "FTLNOMAD.TriageResults.None" },
|
||||
"death": { id: "death", dice: 3, label: "FTLNOMAD.TriageResults.Death" },
|
||||
@@ -156,5 +173,7 @@ export const SYSTEM = {
|
||||
CREATURE_NICHES,
|
||||
STARSHIP_HULL,
|
||||
SKILLS,
|
||||
ROBOT_SIZES,
|
||||
DAMAGE_MODIFIER_CHOICES,
|
||||
ASCII
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user