summaryrefslogtreecommitdiff
path: root/npc/items/PoisonedWater.txt
blob: 66e7280f357480cbc44690ef2797dce5ca1a132d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Evol scripts.	
// Authors:
//    Alastrim, Vasily_Makarov, Reid
// Description:	
//    Heal of 15hp and add 1/4 bad luck to be poisoned.

function	script	usePoisonedWater	{
	set @temp, rand(4);
	if (!@temp) sc_start sc_poison, 1, 50;
	if (@temp) itemheal 15, 0;
	set @temp, 0;
	return;
}