summaryrefslogtreecommitdiff
path: root/npc/items/PoisonedWater.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/PoisonedWater.txt')
-rw-r--r--npc/items/PoisonedWater.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/items/PoisonedWater.txt b/npc/items/PoisonedWater.txt
new file mode 100644
index 00000000..40e93093
--- /dev/null
+++ b/npc/items/PoisonedWater.txt
@@ -0,0 +1,15 @@
+// Evol scripts.
+// Authors:
+// Alastrim, Vasily_Makarov, Reid
+// Description:
+// Heal of 25hp 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) message strcharinfo(0), "Debug: Poisoned";
+ if (@temp) itemheal 15, 0;
+ if (@temp) message strcharinfo(0), "Debug: Healed";
+ set @temp, 0;
+ return;
+}