summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/croconut.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/items/croconut.txt b/npc/items/croconut.txt
index aef6b1af9..a1c4097ae 100644
--- a/npc/items/croconut.txt
+++ b/npc/items/croconut.txt
@@ -11,7 +11,7 @@
OnUse:
mesn "Narrator";
- mes col(l("Do you want to cut this @@?", getitemlink(Croconut)), 9);
+ mesc l("Do you want to cut this @@?", getitemlink(Croconut));
next;
menu
@@ -52,23 +52,23 @@ L_TooWeak:
if ( (.@q > 6) ) goto L_Good;
L_TooWeakLost:
- mes col(l("Ops! You destroyed your @@.", getitemlink(Croconut)), 9);
+ mesc l("Ops! You destroyed your @@.", getitemlink(Croconut));
close;
L_TooWeakFail:
- mes col(l("Well... you did not succeed in opening this @@.", getitemlink(Croconut)), 9);
+ mesc l("Well... you did not succeed in opening this @@.", getitemlink(Croconut));
getitem Croconut, 1;
close;
L_Weak:
- mes col(l("You opened the @@ in two parts, but you crushed one of them.", getitemlink(Croconut)), 9);
+ mesc l("You opened the @@ in two parts, but you crushed one of them.", getitemlink(Croconut));
getitem HalfCroconut, 1;
close;
L_Good:
- mes col(l("You perfectly cut your @@ into two edible parts.", getitemlink(Croconut)), 9);
+ mesc l("You perfectly cut your @@ into two edible parts.", getitemlink(Croconut));
getitem HalfCroconut, 2;
close;