21 lines
435 B
Plaintext
21 lines
435 B
Plaintext
// This is for the museum's nectar, and grants the used a 24 hour monstreous regeneration.
|
|
// Main purpose is to help the nonecasters on lower levels.
|
|
// Tarashon
|
|
|
|
void main()
|
|
{
|
|
object oPC;
|
|
|
|
oPC = GetItemActivator();
|
|
|
|
object oCaster;
|
|
oCaster = oPC;
|
|
|
|
object oTarget;
|
|
oTarget = oPC;
|
|
|
|
AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_MONSTROUS_REGENERATION, oTarget, METAMAGIC_ANY, TRUE, 24, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
|
|
|
|
}
|
|
|