diff options
-rw-r--r-- | db/item_db.txt | 4 | ||||
-rw-r--r-- | npc/000-1/tarlan.txt | 2 | ||||
-rw-r--r-- | npc/items/Croconut.txt (renamed from npc/items/Coconut.txt) | 30 | ||||
-rw-r--r-- | npc/scripts.conf | 2 |
4 files changed, 19 insertions, 19 deletions
diff --git a/db/item_db.txt b/db/item_db.txt index d8e1fe18..2cecaaad 100644 --- a/db/item_db.txt +++ b/db/item_db.txt @@ -11,8 +11,8 @@ 509, Aquada, Aquada, 0, 0, 50, 24, 5, , , , , , 2, , , 0, , 0, {itemheal 30, 0;}, {} {} 510, PinkBlobime, Pink Blobime, 0, 0, 30, 13, 2, , , , , , 2, , , 0, , 0, {callfunc "usePoisonedBlobime";},{} {} // 511, PurpleBlobime, Purple Blobime, 0, 0, 60, 27, 2, , , , , , 2, , , 0, , 0, {callfunc "usePoisonedBlobime";},{} {} -512, HalfCoconut, Half Coconut, 0, 0, 50, 28, 14, , , , , , 2, , , 0, , 0, {itemheal 40, 0;}, {} {} -513, Coconut, Coconut, 0, 0, 80, 50, 30, , , , , , 2, , , 0, , 0, {doevent "Coconut::OnUse";}, {} {} +512, HalfCroconut, Half Croconut, 0, 0, 50, 28, 14, , , , , , 2, , , 0, , 0, {itemheal 40, 0;}, {} {} +513, Croconut, Croconut, 0, 0, 80, 50, 30, , , , , , 2, , , 0, , 0, {doevent "Croconut::OnUse";}, {} {} 700, SmallTentacles, Small Tentacles, 0, 3, 50, 20, 5, , , , , , , , , , , 0, {}, {} {} 701, PiouFeathers, Piou Feathers, 0, 3, 60, 35, 1, , , , , , , , , , , 0, {}, {} {} 702, TortugaShellFragment, Tortuga Shell Fragment, 0, 3, 40, 15, 15, , , , , , , , , , , 0, {}, {} {} diff --git a/npc/000-1/tarlan.txt b/npc/000-1/tarlan.txt index 1b717c6e..7c6d116d 100644 --- a/npc/000-1/tarlan.txt +++ b/npc/000-1/tarlan.txt @@ -2,7 +2,7 @@ // Authors: // Reid // Description: -// Sailor hitting a palm tree, and which is being hitted back by a coconut. +// Sailor hitting a palm tree, and which is being hitted back by a croconut. 000-1.gat,35,43,0,1 script Tarlan 316,{ diff --git a/npc/items/Coconut.txt b/npc/items/Croconut.txt index 20062f0a..c36eb736 100644 --- a/npc/items/Coconut.txt +++ b/npc/items/Croconut.txt @@ -2,43 +2,43 @@ // Authors: // 4144, Reid // Description: -// Allow to cut a coconut in multiple part. +// Allow to cut a croconut in multiple part. // // Multiple choice possible for L_Weapon: // rif(countitem(35xx, 1), l(getitemname("xx"))), l_Weak, // rif(countitem(35yy, 1), l(getitemname("yy"))), l_Good, -000-2-1.gat,0,0,0 script Coconut 0,{ +000-2-1.gat,0,0,0 script Croconut 0,{ -OnCoco: +OnCroconut: getitem 513, 1; close; -OnHalfCoco: +OnHalfCroconut: getitem 512, 1; close; -OnTwoHalfCoco: +OnTwoHalfCroconut: getitem 512, 2; close; OnUse: mesn "Narrator"; - mes col(l("Do you want to cut this") + " " + l(getitemname("Coconut")) + "?", 9); + mes col(l("Do you want to cut this") + " " + l(getitemname("Croconut")) + "?", 9); next; menu l("Yes."), L_Weapon, l("No."), -; - doevent "Coconut::OnCoco"; + doevent "Croconut::OnCroconut"; close; L_Weapon: mes ""; mesn "Narrator"; - mes col(l("Which of your weapons do you want to use in order to cut this Coconut?"), 9); + mes col(l("Which of your weapons do you want to use in order to cut this Croconut?"), 9); next; menu @@ -55,26 +55,26 @@ L_TooWeak: if ( (@q == 3) || (@q == 4) || (@q == 5) ) goto L_Weak; L_TooWeakLost: - mes col(l("You hit too hard with your fist, you lost your Coconut."), 9); + mes col(l("You hit too hard with your fist, you lost your Croconut."), 9); close; L_TooWeakFail: - mes col(l("Your hands are too weak, you didn't open the Coconut."), 9); + mes col(l("Your hands are too weak, you didn't open the Croconut."), 9); - doevent "Coconut::OnCoco"; + doevent "Croconut::OnCroconut"; close; L_Weak: - mes col(l("You opened the Coconut, but only one side is edible."), 9); + mes col(l("You opened the Croconut, but only one side is edible."), 9); - doevent "Coconut::OnHalfCoco"; + doevent "Croconut::OnHalfCroconut"; close; L_Good: - mes col(l("You perfectly cut your Coconut in two ediable parts."), 9); + mes col(l("You perfectly cut your Croconut in two ediable parts."), 9); - doevent "Coconut::OnTwoHalfCoco"; + doevent "Croconut::OnTwoHalfCroconut"; close; }
\ No newline at end of file diff --git a/npc/scripts.conf b/npc/scripts.conf index cd764c09..d48def19 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -6,7 +6,7 @@ import: npc/_import.txt // Item Functions npc: npc/items/PoisonedWater.txt npc: npc/items/PoisonedBlobime.txt -npc: npc/items/Coconut.txt +npc: npc/items/Croconut.txt // Script Functions npc: npc/functions/clientversion.txt |