summaryrefslogtreecommitdiff
path: root/npc/021-2_Tulimshar/jhedia.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/021-2_Tulimshar/jhedia.txt')
-rw-r--r--npc/021-2_Tulimshar/jhedia.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/021-2_Tulimshar/jhedia.txt b/npc/021-2_Tulimshar/jhedia.txt
index 096f4932..2677a099 100644
--- a/npc/021-2_Tulimshar/jhedia.txt
+++ b/npc/021-2_Tulimshar/jhedia.txt
@@ -7,7 +7,10 @@
set @Coal_Per, 10;
mes "[Jhedia]";
- mes "\"I forge iron ore into ingots. Ingots are more useful for skilled smiths, like armorers, because the ore is refined and made into useful units which can be worked with. To make ingots I need " + @Iron_Ore_Per + " iron ore and " + @Cost_Per_Ingot + " gp per ingot. I also need " + @Coal_Per + " coal for my forgeHow many ingots would you like?\"";
+ mes "\"I forge [Iron Ore] into ingots. Ingots are more useful for skilled smiths, like armorers, because the ore is refined and made into useful units which can be worked with. To make ingots, I need " + @Iron_Ore_Per + " [Iron Ore] and " + @Cost_Per_Ingot + " gp per ingot. I also need " + @Coal_Per + " [Coal] for my forge.\"";
+ next;
+ mes "[Jhedia]";
+ mes "\"How many ingots would you like?\"";
input @ingot_count;
if (@ingot_count == 0) goto L_Jhedia_Bye;
@@ -25,27 +28,27 @@
L_Jhedia_Bye:
mes "[Jhedia]";
- mes "\"Good Bye.\"";
+ mes "\"Goodbye then.\"";
close;
L_Jhedia_NotEnough_Ore:
mes "[Jhedia]";
- mes "\"You don't seem to have enough iron ore.\"";
+ mes "\"You do not seem to have enough [Iron Ore].\"";
close;
L_Jhedia_NotEnough_Coal:
mes "[Jhedia]";
- mes "\"You don't seem to have enough coal.\"";
+ mes "\"You do not seem to have enough [Coal].\"";
close;
L_Jhedia_NotEnough_Zeny:
mes "[Jhedia]";
- mes "\"You don't seem to have enough gold pieces.\"";
+ mes "\"You do not seem to have enough gold pieces.\"";
close;
L_Jhedia_NotEnoughSlots:
mes "[Jhedia]";
- mes "You don't seem to have enough room to carry this many ingots.";
+ mes "\"You do not seem to have enough room to carry this many ingots.\"";
close;
}