10 lines
236 B
Plaintext
10 lines
236 B
Plaintext
|
// Potion of shield recipe
|
||
|
void main()
|
||
|
{
|
||
|
object oMe=OBJECT_SELF;
|
||
|
SetLocalInt(oMe,"nALCCost",40);
|
||
|
SetLocalInt(oMe,"nALCXP",4);
|
||
|
SetLocalString(oMe,"sALCRes","rts_pot_2");
|
||
|
SetLocalString(oMe,"sALCCom","NW_IT_MSMLMISC19");
|
||
|
}
|