A consumable (Herder Cap, Grim Cap, or Potion) that shakes screen then spawns ogres with 0 attack power, 0 xp, and low health.
I have everything worked out except could someone direct me to how I can spawn creatures not anchored to a spawner? Otherwise I will have to force the party to consume the item prior to leaving room via on use door activation.
I have given this a shot based off some scripts I saw involving summoning spells but it just crashes the editor.
I think this should be possible using the coordinates of the party, so 'party.x - 1' and 'party.y-1' should refer to a square directly northwest of the party. If the party's by a wall or corner I suspect this could cause a crash or trapped ogre though. You'd need some way to decide if a square is open dungeon or not and that doesn't seem to be around.
And it's very simple. The party is hallucinating. What they're hallucinating is ogres!
What just occurred to me is a bit of a kludgey hack, but one could use an entitiesAt check at the possible coordinates. If there's entities there, it's probably safe to put a monster there. To make this work excellently, one could put a hidden pressure plate at every square you're willing to have a hallucinated ogre spawn in. Run a for loop looking for any hidden pressure plates and it's very possible Bob will be your uncle!
vorebane wrote:I think this should be possible using the coordinates of the party, so 'party.x - 1' and 'party.y-1' should refer to a square directly northwest of the party. If the party's by a wall or corner I suspect this could cause a crash or trapped ogre though. You'd need some way to decide if a square is open dungeon or not and that doesn't seem to be around.
And it's very simple. The party is hallucinating. What they're hallucinating is ogres!
What just occurred to me is a bit of a kludgey hack, but one could use an entitiesAt check at the possible coordinates. If there's entities there, it's probably safe to put a monster there. To make this work excellently, one could put a hidden pressure plate at every square you're willing to have a hallucinated ogre spawn in. Run a for loop looking for any hidden pressure plates and it's very possible Bob will be your uncle!
Thanks for the suggestions, it sounds like I might just obstruct the party or restrict progression until the consumable is used in the room with the ogre spawner.