Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Standing-Storm committed Dec 17, 2024
1 parent 61f58dc commit 1fa0edc
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/mods/Xedra_Evolved/items/alchemy.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
"type": "COMESTIBLE",
"comestible_type": "MED",
"name": { "str_sp": "Imbuement of the Trees" },
"description": ".",
"description": "In a wooden bowl, Faewild and Dreamdross are mixed together. The mixture has fae and human blood added to it and parts from the plant fae and then all mixed again until it's a uniform blend. The resulting mixture will eventually dissolve into a deep green liquid.",
"weight": "50 g",
"volume": "2 ml",
"price": "150 cent",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,13 @@
"id": "become_plant_fae",
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } },
"effect": [
{
"u_message": "You imbibed the concoction and you feel your soul merge with an alien power, becoming attuned to the natural world."
},
{ "u_add_trait": "ARVORE" },
{ "u_learn_recipe": "mutagen_plantkin" },
{ "u_learn_recipe": "verdant_poultice" }
{ "u_message": "As you imbibe the concoction, you feel the stolen power fusing with your essence." },
{ "u_add_trait": "FALSE_ARVORE_HATRED" },
{ "math": [ "u_vitamin('mutagen_plantkin')", "+=", "500" ] },
{ "math": [ "u_vitamin('mutagen')", "+=", "1000" ] },
{ "u_mutate": 0 },
{ "math": [ "u_vitamin('mutagen_plantkin')", "-=", "500" ] },
{ "math": [ "u_vitamin('mutagen')", "-=", "1000" ] }
],
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ]
}
Expand Down
10 changes: 10 additions & 0 deletions data/mods/Xedra_Evolved/mutations/mutations.json
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,16 @@
"description": "You were born with an allergy to iron and, to a lesser extent, steel. Wearing or touching anything made of iron or steel will cause you pain and discomfort.",
"starting_trait": true
},
{
"type": "mutation",
"id": "FALSE_ARVORE_HATRED",
"name": { "str": "False Arvore" },
"points": -4,
"description": "The arvore can sense the stolen power within you and they will not react well to it.",
"purifiable": false,
"valid": false,
"anger_relations": [ [ "ARVORE", 100 ] ]
},
{
"type": "mutation",
"id": "FALSE_HOMULLUS_HATRED",
Expand Down
20 changes: 20 additions & 0 deletions data/mods/Xedra_Evolved/recipes/alchemy.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,5 +444,25 @@
[ [ "faewild", 5 ] ],
[ [ "scrap_dreamdross", 5 ] ]
]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "plant_imbuement",
"category": "CC_XEDRA",
"subcategory": "CSC_XEDRA_ALCHEMY",
"skill_used": "chemistry",
"skills_required": [ [ "deduction", 5 ] ],
"difficulty": 7,
"time": "2 h",
"flags": [ "SECRET" ],
"tools": [ [ [ "bowl_wood", -1 ] ], [ [ "mortar_pestle", -1 ] ] ],
"components": [
[ [ "blood", 1 ] ],
[ [ "fae_blood", 1 ] ],
[ [ "arvore_sample", 5 ] ],
[ [ "faewild", 5 ] ],
[ [ "scrap_dreamdross", 5 ] ]
]
}
]

0 comments on commit 1fa0edc

Please sign in to comment.