Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Standing-Storm committed Nov 10, 2024
1 parent d1d2d02 commit e7dd4ef
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
7 changes: 7 additions & 0 deletions data/mods/Xedra_Evolved/eocs/eoc_mod_overrides.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"type": "effect_on_condition",
"id": "EOC_CONDITIONS_LILIN_DINOMOD_RUACH_DRAIN",
"effect": [ ]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"type": "effect_on_condition",
"id": "EOC_CONDITIONS_LILIN_DINOMOD_RUACH_DRAIN",
"condition": { "and": [ { "u_has_species": "DINOSAUR" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
"effect": [ ]
}
]
19 changes: 12 additions & 7 deletions data/mods/Xedra_Evolved/spells/lilin_spell_eocs.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,13 @@
"if": {
"or": [
{ "u_has_species": "CYBORG" },
{ "u_has_species": "MAMMAL" },
{ "u_has_species": "AMPHIBIAN" },
{ "u_has_species": "BIRD" },
{ "u_has_species": "REPTILE" },
{ "u_has_species": "FISH" },
{ "u_has_species": "KRAKEN" }
{ "and": [ { "u_has_species": "MAMMAL" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
{ "and": [ { "u_has_species": "AMPHIBIAN" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
{ "and": [ { "u_has_species": "BIRD" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
{ "and": [ { "u_has_species": "REPTILE" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
{ "and": [ { "u_has_species": "FISH" }, { "not": { "u_has_species": "ZOMBIE" } } ] },
{ "u_has_species": "KRAKEN" },
{ "test_eoc": "EOC_CONDITIONS_LILIN_DINOMOD_RUACH_DRAIN" }
]
},
"then": [
Expand All @@ -109,7 +110,11 @@
"type": "good"
},
{ "run_eocs": "EOC_LILIN_RUACH_DRAIN_SIDE_EFFECTS" }
]
],
"else": {
"npc_message": "You try to absorb the <u_name>'s ruach but get only fragments. Not enough to for a mouthful.",
"type": "bad"
}
}
}
}
Expand Down

0 comments on commit e7dd4ef

Please sign in to comment.