Add new comment
Calling all fairies, pixies and fae! |
||
| Submitted by kathycf on Fri, 2021-09-17 00:36 | ||
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.
[t:template,n:spell_swamp_witch_summon]
{
category_name = "magic";
doc = "spell_swamp_witch_summon";
specializes = base_spell_monster;
[inventory]
{
[delayed_pcontent]
{
[oneof*]
{
[all*]
{
chance = 0.500;
il_main = swamp_creature_summon;
}
[all*]
{
chance = 0.500;
il_main = swamp_slinger_summon;
}
}
}
}
[magic]
{
cast_range = 10;
cast_reload_delay = 1;
caster_state_name = "Controlling Monster";
effect_duration = 600;
requires_line_of_sight = true;
speed_bias = 1;
target_type_flags = tt_conscious_enemy;
usage_context_flags = uc_offensive;
state_name = "Controlling Monster";
require_state_check = true;
}
[spell_summon_random]
{
monster_summon = true;
spawn_radius = 3.0;
effect_script = "summon";
end_script = "un_summon";
script_params = "[scale(1.75)]";
description = "Summoned Creature";
caster_description = "Controlling Summoned";
}
}blogs: |
||