Skip to content

Commit b85daaa

Browse files
authored
Merge pull request #82567 from Standing-Storm/fix-tanglevine
[Magiclysm] Fix triffid vineweavers attacking their own summons
2 parents fff5944 + 905965b commit b85daaa

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

data/mods/Magiclysm/Spells/alien_mages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"valid_targets": [ "ground" ],
141141
"flags": [ "RANDOM_AOE", "RANDOM_DURATION", "HOSTILE_SUMMON" ],
142142
"effect": "summon",
143-
"effect_str": "mon_tanglevine",
143+
"effect_str": "mon_tanglevine_triffid",
144144
"shape": "blast",
145145
"max_level": 15,
146146
"min_damage": 1,

data/mods/Magiclysm/monsters/mics.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "An image made from light, nearly identical to the real deal.",
77
"looks_like": "player",
88
"default_faction": "factionless",
9-
"species": [ "UNKNOWN" ],
9+
"species": [ "SUMMONED_CREATURE" ],
1010
"volume": "62500 ml",
1111
"weight": "81500 g",
1212
"hp": 1,
@@ -43,6 +43,7 @@
4343
"description": "A conjured glowing longsword that darts and dodges around, slicing and cutting your foes into small pieces.",
4444
"looks_like": "longsword",
4545
"default_faction": "player",
46+
"species": [ "SUMMONED_CREATURE" ],
4647
"volume": "62500 ml",
4748
"weight": "81500 g",
4849
"hp": 30,
@@ -80,7 +81,7 @@
8081
"name": "hologram",
8182
"description": "Hologram copy of you.",
8283
"default_faction": "player",
83-
"species": [ "UNKNOWN" ],
84+
"species": [ "SUMMONED_CREATURE" ],
8485
"volume": "62500 ml",
8586
"weight": "1 g",
8687
"hp": 1,
@@ -104,7 +105,7 @@
104105
"description": "A summoned watcher spirit, translucent and barely visible. It gazes all around itself.",
105106
"default_faction": "player",
106107
"bodytype": "blob",
107-
"species": [ "AIR_SPIRIT" ],
108+
"species": [ "AIR_SPIRIT", "SUMMONED_CREATURE" ],
108109
"volume": "1500 ml",
109110
"weight": "136 g",
110111
"hp": 20,

data/mods/Magiclysm/monsters/plants.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,12 @@
5555
"death_function": { "message": "The %s rots into nothingness in moments.", "corpse_type": "NO_CORPSE" },
5656
"flags": [ "HEARS", "GOODHEARING", "IMMOBILE", "NOHEAD", "HARDTOSHOOT", "GRABS", "PLASTIC" ],
5757
"armor": { "bash": 18, "stab": 10, "electric": 3, "bullet": 22 }
58+
},
59+
{
60+
"type": "MONSTER",
61+
"id": "mon_tanglevine_triffid",
62+
"copy-from": "mon_tanglevine",
63+
"species": [ "PLANT", "SUMMONED_CREATURE" ],
64+
"default_faction": "triffid"
5865
}
5966
]

data/mods/Magiclysm/monsters/summoned.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"copy-from": "mon_shadow",
77
"name": { "str": "shadow" },
88
"description": "This is an animate shadow. Looking like nothing more than an errant patch of normal shadow, it draws your attention by the way it moves subtly and whispers softly in the back of your mind. Strange intrusive thoughts accompany the quiet murmur, awakening your most horrific memories and fears.",
9+
"species": [ "NETHER", "SUMMONED_CREATURE" ],
910
"hp": 60,
1011
"speed": 150,
1112
"melee_skill": 8,
@@ -41,13 +42,15 @@
4142
"copy-from": "mon_magi_shadow",
4243
"name": { "str": "shadow" },
4344
"description": "This is an animate shadow. Looking like nothing more than an errant patch of normal shadow, it draws your attention by the way it moves subtly and whispers softly in the back of your mind. Strange intrusive thoughts accompany the quiet murmur, awakening your most horrific memories and fears.",
45+
"species": [ "NETHER", "SUMMONED_CREATURE" ],
4446
"default_faction": "zombie"
4547
},
4648
{
4749
"id": "mon_keeper_of_the_glades_shaman",
4850
"copy-from": "mon_keeper_of_the_glades",
4951
"type": "MONSTER",
5052
"name": { "str_sp": "keeper of the glades" },
53+
"species": [ "FOREST_SPIRIT", "SUMMONED_CREATURE" ],
5154
"extend": { "special_attacks": [ ] }
5255
},
5356
{

data/mods/Magiclysm/species.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
"id": "MAGICAL_BEAST",
55
"description": "a magical beast"
66
},
7+
{
8+
"type": "SPECIES",
9+
"id": "SUMMONED_CREATURE",
10+
"description": "a creature summoned by magic"
11+
},
712
{
813
"type": "SPECIES",
914
"id": "DRAGON",

0 commit comments

Comments
 (0)