Skip to content

Commit

Permalink
Salamander traits
Browse files Browse the repository at this point in the history
  • Loading branch information
Standing-Storm committed Aug 12, 2024
1 parent 32b3a01 commit 2aafc82
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,30 @@
{
"type": "effect_on_condition",
"id": "EOC_SALAMANDER_WATER_TO_BOOZE",
"condition": { "u_has_trait": "SALAMANDER_WATER_TO_BOOZE" },
"effect": [ { "u_learn_recipe": "mixed_alcohol_strong_from_water" } ]
"required_event": "gains_mutation",
"eoc_type": "EVENT",
"condition": { "compare_string": [ "SALAMANDER_WATER_TO_BOOZE", { "context_val": "trait" } ] },
"effect": [
{ "u_learn_recipe": "mixed_alcohol_strong_from_water" },
{
"u_message": "From the fiery depths of your spirit, knowledge of how to turn various other water into strong alcohol fills your mind.",
"type": "good"
}
]
},
{
"type": "effect_on_condition",
"id": "EOC_SALAMANDER_WATER_TO_FUEL",
"condition": { "u_has_trait": "SALAMANDER_WATER_TO_FUEL" },
"effect": [ { "u_learn_recipe": "lamp_oil_from_water" } ]
"required_event": "gains_mutation",
"eoc_type": "EVENT",
"condition": { "compare_string": [ "SALAMANDER_WATER_TO_FUEL", { "context_val": "trait" } ] },
"effect": [
{ "u_learn_recipe": "lamp_oil_from_water" },
{
"u_message": "From the fiery depths of your spirit, knowledge of how to turn various other water into strong alcohol fills your mind.",
"type": "good"
}
]
},
{
"type": "effect_on_condition",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,9 @@
"points": 0,
"visibility": 0,
"ugliness": 0,
"description": "Upon gaining this ability the Salamander can activate this trait to learn how to convert water into very strong alcohol.",
"description": "Upon gaining this ability the Salamander learns how to convert water into very strong alcohol.",
"prereqs": [ "SALAMANDER_EYES" ],
"category": [ "SALAMANDER" ],
"active": true,
"activated_eocs": [ "EOC_SALAMANDER_WATER_TO_BOOZE" ]
"category": [ "SALAMANDER" ]
},
{
"type": "mutation",
Expand All @@ -223,11 +221,9 @@
"points": 6,
"visibility": 0,
"ugliness": 0,
"description": "Upon gaining this ability the Salamander can activate this trait to learn how to convert water directly into fuel. This is an intensely draining activity.",
"description": "Upon gaining this ability the Salamander learn how to convert water directly into fuel. This is an intensely draining activity.",
"prereqs": [ "SALAMANDER_WATER_TO_BOOZE" ],
"category": [ "SALAMANDER" ],
"active": true,
"activated_eocs": [ "EOC_SALAMANDER_WATER_TO_FUEL" ]
"category": [ "SALAMANDER" ]
},
{
"type": "mutation",
Expand Down

0 comments on commit 2aafc82

Please sign in to comment.