PRC8_fork/trunk/newspellbook/moi_mld_duskling.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

20 lines
691 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
20/1/20 by Stratovarius
Duskling Speed
Duskling base speed is 30 feet. However, a duskling can invest essentia to improve this speed.
For every point of essentia invested in this racial trait, the dusklings speed improves by 5 feet.
This enhancement bonus only applies when the duskling is wearing light or no armor and carrying no more than a light load.
*/
#include "moi_inc_moifunc"
void main()
{
object oMeldshaper = PRCGetSpellTargetObject();
int nEssentia = GetEssentiaInvested(oMeldshaper);
effect eLink = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, SupernaturalEffect(eLink), oMeldshaper, 9999.0);
}