summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/re/mob_db.conf16
-rw-r--r--db/re/mob_skill_db.txt2
-rw-r--r--npc/002-1/alige.txt6
-rw-r--r--npc/002-3/juliet.txt19
4 files changed, 23 insertions, 20 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf
index a8b65eb14..056739070 100644
--- a/db/re/mob_db.conf
+++ b/db/re/mob_db.conf
@@ -250,12 +250,12 @@ mob_db: (
Lv: 7
Hp: 500
Sp: 0
- Exp: 6
+ Exp: 5
JExp: 0
AttackRange: 1
- Attack: [100, 150]
+ Attack: [80, 120]
Def: 10
- Mdef: 10
+ Mdef: 20
Stats: {
Str: 5
Agi: 15
@@ -282,11 +282,11 @@ mob_db: (
DamageMotion: 480
MvpExp: 0
Drops: {
- Cheese: 2000
- RattoTeeth: 1000
- RattoTail: 700
- Piberries: 700
- Moss: 700
+ Cheese: 1800
+ RattoTeeth: 900
+ RattoTail: 600
+ Piberries: 600
+ Moss: 600
}
},
{
diff --git a/db/re/mob_skill_db.txt b/db/re/mob_skill_db.txt
index 5429a2c4f..626fe2828 100644
--- a/db/re/mob_skill_db.txt
+++ b/db/re/mob_skill_db.txt
@@ -55,7 +55,7 @@
// -4: added for all mobs.
//id,name@skill,state,skillid,skilllevel,rate,casttime,delay,cancel,target,cond1,cond2,val0,val1,val2,val3,val4,emotion,chat
-1005,Ratto@NPC_POISON,attack,176,20,500,0,500,yes,target,always,0,,,,,,,
+1005,Ratto@NPC_POISON,attack,176,20,50,0,500,yes,target,always,0,,,,,,,
1008,Blub@NPC_SUMMONSLAVE,any,196,4,10000,700,60000,no,self,onspawn,0,1007,,,,,,
1010,Crocotree@NPC_REBIRTH,dead,208,2,10000,0,0,yes,self,always,0,,,,,,,
1010,Crocotree@NPC_TRANSFORMATION,any,198,1,10000,700,60000,no,self,afterskill,208,1014,,,,,,
diff --git a/npc/002-1/alige.txt b/npc/002-1/alige.txt
index 4830ad0b2..2f7aa2963 100644
--- a/npc/002-1/alige.txt
+++ b/npc/002-1/alige.txt
@@ -1,3 +1,4 @@
+// TMW2 Scripts.
// Evol scripts.
// Authors:
// Ablu
@@ -5,8 +6,9 @@
// Qwerty Dragon
// Reid
// Vasily_Makarov
+// Jesusalva
// Description:
-// Hidden in a ship's hole.
+// Stowaway hidden in a ship's hole.
// 2 bits array:
// ShipQuests
// Variable:
@@ -144,7 +146,7 @@ L_Artis:
setcamnpc;
mes "";
mesn;
- mesq l("It's a commercial port of Andorra, it's weird that you don't know about it since it is one of the most famous cities throughout the whole world. But hey, back to me. Remember me telling you that I'm hun...grrr...eee!");
+ mesq l("It's a commercial port town, far far away from Tulimshar and the Great Continent. But hey, back to me. Remember me telling you that I'm hun...grrr...eee!");
next;
restorecam;
diff --git a/npc/002-3/juliet.txt b/npc/002-3/juliet.txt
index 1c20c3341..915c66faa 100644
--- a/npc/002-3/juliet.txt
+++ b/npc/002-3/juliet.txt
@@ -24,12 +24,9 @@
closedialog;
}
- function gotoSleep {
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You already did enough for us, follow Nard's advice and get some rest."),
- l("We are at half a day from our final destination, by the time that you wake up I'm sure that we will be there!"),
- l("Do you have any other questions for me?");
- ynMenu;
+ function sellFood {
+ openshop;
+ close;
return;
}
@@ -147,7 +144,7 @@
.@q4 = getq(General_Narrator);
selectd
- rif(.@q3 == 5 && .@q4 < 1, l("What can I do now?")),
+ l("I am hungry. Can I buy some food here?"),
rif(getskilllv(NV_BASIC) < 6, l("Something is wrong with me, I can't smile nor sit.")),
lg("I made a mistake, I would like to change my language."),
l("Could you explain to me where I am?"),
@@ -157,7 +154,7 @@
switch (@menu)
{
- case 1: gotoSleep; break;
+ case 1: sellFood; break;
case 2: basicSkill; break;
case 3: chooseLang .@s$; break;
case 4: whereAmI; break;
@@ -222,5 +219,9 @@ OnTouch:
OnInit:
.sex = G_FEMALE;
.distance = 10;
- .quest_debug = ShipQuests_Julia;
+ sellitem Cheese;
+ sellitem Fungus;
+ sellitem Aquada;
+ sellitem Piberries;
+
}