Its very easy.Drakkan wrote: Probably you should release more "color" variants, like green ones, which will deal poison ?
1/ color variants -
make new file simmilar mod_assets/swarm/textures/flies.dds with alpha layer.
and seting this texture for new particle system simmilar mod_assets/swarm/scripts/particles.lua
( NEW Idea - using paricle system for lighting to create lighting anomaly monster
and in new monster set to new particle.
2/ deal poison -
script for monster - now is
Code: Select all
onDealDamage = function(self, champion, damage)
if math.random() <= 0.35 then
champion:setConditionCumulative("paralyzed", 5)
end
end,
add lines
Code: Select all
if math.random() <= 0.2 then
champion:setConditionCumulative("diseased", 30)
end
I will make bees or some next insects if you want.