Restructure for publishing to Steam Workshop
- Add a preview image for Steam Workshop
This commit is contained in:
parent
59f6e20a31
commit
fbe28923cf
8 changed files with 0 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
local function initTraits()
|
||||
TraitFactory.addTrait(
|
||||
"NotAPickyEater",
|
||||
getText("UI_trait_NotAPickyEater"),
|
||||
1,
|
||||
getText("UI_trait_NotAPickyEaterdesc"),
|
||||
false,
|
||||
false
|
||||
)
|
||||
TraitFactory.addTrait(
|
||||
"RefinedPalate",
|
||||
getText("UI_trait_RefinedPalate"),
|
||||
-2,
|
||||
getText("UI_trait_RefinedPalatedesc"),
|
||||
false,
|
||||
false
|
||||
)
|
||||
TraitFactory.setMutualExclusive("NotAPickyEater", "RefinedPalate")
|
||||
end
|
||||
|
||||
Events.OnGameBoot.Add(initTraits)
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
UI_EN = {
|
||||
UI_trait_NotAPickyEater = "Not a Picky Eater",
|
||||
UI_trait_NotAPickyEaterdesc = "Removes all dissatisfaction with food.",
|
||||
UI_trait_RefinedPalate = "Refined Palate",
|
||||
UI_trait_RefinedPalatedesc = "Increases dissatisfaction with low quality foods.",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue