summaryrefslogtreecommitdiff
path: root/npc/items/shovel.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/shovel.txt')
-rw-r--r--npc/items/shovel.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt
new file mode 100644
index 000000000..e79ead47d
--- /dev/null
+++ b/npc/items/shovel.txt
@@ -0,0 +1,34 @@
+// Evol scripts.
+// Authors:
+// Travolta
+// Description:
+// NPC to use shovel (dig, bury etc)
+
+
+- script Shovel -1,{
+
+OnUse:
+ narrator
+ l("You hold the shovel in your hangs."),
+ l("What are you going to do?");
+
+ .@action = select(
+ l("Dig."),
+ l("Bury."),
+ l("Nothing."));
+
+ mes "";
+ switch(.@action)
+ {
+ case 1:
+ narrator l("DIG Not implemented.");
+ break;
+ case 2:
+ narrator l("BURY Not implemented.");
+ break;
+ case 3:
+ narrator l("You hide your shovel.");
+ break;
+ }
+ close;
+}