summaryrefslogtreecommitdiff
path: root/npc/items/poisonedblobime.txt
blob: 2cb4ea64ccc812d280ba0e23e9988c5c91cb4105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Evol scripts.	
// Authors:
//    Alastrim
//    Reid
//    Vasily_Makarov
// Description:	
//    1/2 chances to get poisoned.
//    1/2 chances to get healed (1 HP).

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