summaryrefslogtreecommitdiff
path: root/npc/items/rubber_bat.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/rubber_bat.txt')
-rw-r--r--npc/items/rubber_bat.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/items/rubber_bat.txt b/npc/items/rubber_bat.txt
new file mode 100644
index 00000000..a5921674
--- /dev/null
+++ b/npc/items/rubber_bat.txt
@@ -0,0 +1,10 @@
+function script rubberBat {
+ if (gettimetick(2) - @lastbat < 2) goto L_Return;
+ misceffect 403;
+ @lastbat = gettimetick(2);
+ goto L_Return;
+
+L_Return:
+ getitem "RubberBat", 1;
+ return;
+}