I like DarkElf's fairy textures and started making a few more myself.
So I was thinking maybe this code could be adapted to summon a random fairy. Same abilities with just a different appearance. It would be easy to make some additional actor templates to add to the summon fairy spell.
without giving away too much of my current test run ... i will give a sneak of my spell coding i am testing...
[other] { il_active_primary_spell=spell_fireball_rain; il_spell_1 = spell_fireball_rain; il_spell_2 = spell_fireskull; il_spell_3 = spell_flame_blades;just like all monsters they can have more than 1 spell
also in your example say you had like 4 fairies to summon u could do ..
[delayed_pcontent] { [oneof*] { [all*] { chance = 0.25; il_main = fairy1_summon; } [all*] { chance = 0.25; il_main = fairy2_summon; } } [all*] { chance = 0.25; il_main = fairy3_summon; } }[all*] { chance = 0.25; il_main = fairy4_summon; } }