19 lines
531 B
Plaintext
19 lines
531 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: swt_flame_burn
|
||
|
//:: swt_flame_burn.nss
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Lysandius
|
||
|
//:: Created On: 28-06-2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
SpeakString("As you touch the flame, you burn your hands.");
|
||
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(1, DAMAGE_TYPE_FIRE), GetLastUsedBy());
|
||
|
}
|