Chaos Project

RPG Maker => General Discussion => Troubleshooting / Help => Topic started by: Holyrapid on December 12, 2009, 07:29:45 am

Title: Parted enemies? Is it possible?
Post by: Holyrapid on December 12, 2009, 07:29:45 am
So, i want to know, is it possible to have enemies that are in multiple parts (thinks FF7, FFX and stuff like that) so that, if they´re somewhat, sorta linked. Like Bizzaro-Sephiroth in FF7, or that one monster fought on the beach, after Sin attacks in FFX...
So that when the main body dies, the rest die aswell, and the main body could revive the parts destroyed... I know that i need to have graphics for all the parts (or do i?), but i want to know if this is possible, and sorry if i´m bit vague, but i´m just bad at explaining stuff...
Title: Re: Parted enemies? Is it possible?
Post by: Blizzard on December 12, 2009, 09:34:53 am
You can do that easily with battle events. -_-
Title: Re: Parted enemies? Is it possible?
Post by: fugibo on December 12, 2009, 09:43:43 am
When main part dies: End battle.
When both secondary parts have died (use variables): Allow the main part to possibly cast a spell to revive them, but don't necessarily force him to.
Title: Re: Parted enemies? Is it possible?
Post by: Blizzard on December 12, 2009, 09:50:46 am
Or even: If main part is dead, kill all remaining enemies (so you get the EXP properly).
I even have evented summoning in my game. The boss can summon up to two underlings whenever he wants. All I do is use one switch and a conditional high-priority skill with that switch as condition. I update the switch state each turn and that's it. And the switch is merely there so say "hey, both are already summoned, don't use the summoning skill that calls a common event and revives one of the underlings".
Title: Re: Parted enemies? Is it possible?
Post by: Holyrapid on December 13, 2009, 08:08:11 am
Ok, but how do i make it so that when i kill the sub.parts, they don´t just fade away, instead they turn grey, and cannot be selected as a target?
Title: Re: Parted enemies? Is it possible?
Post by: Blizzard on December 13, 2009, 08:48:21 am
You need an edit of my Death Image script from Tons that does it on enemies and each enemy individually.
Title: Re: Parted enemies? Is it possible?
Post by: Shining Riku on December 14, 2009, 01:19:27 pm
I actually did this: I had a boss sprite that had ALL the parts on, even the parts that'd be "dead" but those were colored differently.

The bosses' arms, since they were destructible, were copied and made into separate enemy graphics and used as two more bad guys, put over the main bosses' body parts.

...I hope I made sense :^_^':

The reviving of the body parts can be handled really easily with battle eventing, but to make the battle end when the body is killed, do what Blizzard said earlier and check to see if the body is KO'd, and then apply the death state to the rest of the troop. You could even do that to have the boss scream one last time before he dies.
Title: Re: Parted enemies? Is it possible?
Post by: Holyrapid on December 17, 2009, 01:03:53 pm
Well, ok. Thanks guys... I guess...