summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/re/map_zone_db.conf2
-rw-r--r--db/re/mob_db.conf90
-rw-r--r--npc/001-1/eventmaster.txt19
3 files changed, 60 insertions, 51 deletions
diff --git a/db/re/map_zone_db.conf b/db/re/map_zone_db.conf
index d536515db..04249706c 100644
--- a/db/re/map_zone_db.conf
+++ b/db/re/map_zone_db.conf
@@ -76,7 +76,7 @@ zones: (
/* "command:min-group-lv-to-override" e.g. "heal: 70" */
disabled_commands: {
- spawn: 100
+ //spawn: 100
monster: 100
item: 100
}
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf
index c70ce2651..ef2c41966 100644
--- a/db/re/mob_db.conf
+++ b/db/re/mob_db.conf
@@ -4208,49 +4208,6 @@ mob_db: (
},
{
Id: 1116
- SpriteName: "DemonicMouboo"
- Name: "Demonic Mouboo"
- Lv: 45
- Hp: 500
- Sp: 0
- Exp: 24
- JExp: 1
- AttackRange: 1
- Attack: [300, 1400]
- Def: 21
- Mdef: 21
- Stats: {
- Str: 20
- Agi: 3
- Vit: 5
- Int: 10
- Dex: 40
- Luk: 25
- }
- ViewRange: 1
- ChaseRange: 12
- Size: 0
- Race: 2
- Element: (1, 1)
- Mode: {
- CanMove: true
- CanAttack: true
- ChangeChase: true
- CastSensorChase: true
- }
- MoveSpeed: 800
- AttackDelay: 1872
- AttackMotion: 672
- DamageMotion: 200
- MvpExp: 0
- Drops: {
- RedApple: 400
- MoubooSteak: 215
- AlphaMoubooHat: 1
- }
-},
-{
- Id: 1117
SpriteName: "SmallMagicBif"
Name: "Small Magic Bif"
Lv: 1
@@ -4292,7 +4249,7 @@ mob_db: (
}
},
{
- Id: 1118
+ Id: 1117
SpriteName: "MagicBif"
Name: "Magic Bif"
Lv: 1
@@ -4334,7 +4291,7 @@ mob_db: (
}
},
{
- Id: 1119
+ Id: 1118
SpriteName: "BigMagicBif"
Name: "Big Magic Bif"
Lv: 1
@@ -4376,6 +4333,49 @@ mob_db: (
}
},
{
+ Id: 1119
+ SpriteName: "DemonicMouboo"
+ Name: "Demonic Mouboo"
+ Lv: 45
+ Hp: 500
+ Sp: 0
+ Exp: 24
+ JExp: 1
+ AttackRange: 1
+ Attack: [300, 1400]
+ Def: 21
+ Mdef: 21
+ Stats: {
+ Str: 20
+ Agi: 3
+ Vit: 5
+ Int: 10
+ Dex: 40
+ Luk: 25
+ }
+ ViewRange: 1
+ ChaseRange: 12
+ Size: 0
+ Race: 2
+ Element: (1, 1)
+ Mode: {
+ CanMove: true
+ CanAttack: true
+ ChangeChase: true
+ CastSensorChase: true
+ }
+ MoveSpeed: 800
+ AttackDelay: 1872
+ AttackMotion: 672
+ DamageMotion: 200
+ MvpExp: 0
+ Drops: {
+ RedApple: 400
+ MoubooSteak: 215
+ AlphaMoubooHat: 1
+ }
+},
+{
Id: 1120
SpriteName: "Jack'O"
Name: "Jack'O"
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt
index a9d95d213..2f58168bb 100644
--- a/npc/001-1/eventmaster.txt
+++ b/npc/001-1/eventmaster.txt
@@ -55,8 +55,8 @@ L_Spawn:
"1x Golden/Night Scorpion, 2x Santa Slime, 5x Copper Slime", // 11
"(agr) 2x Fallen Guards", // 12
- "10x Clover Path, 5 groups of 5 random small Bifs", // 13
- "4 groups of 5 random Bifs + 1 group of 5 random Big Bifs"; // 14
+ "10x Clover Path, 5 groups of 5 random Bifs", // 13
+ "5x Bifs, 4 groups of 5 random Bifs"; // 14
switch (@menu) {
case 1:
@@ -128,14 +128,23 @@ L_Spawn:
@log_spawns=@log_spawns+2;
break;
- //"10x Clover Path, 5 groups of 5 random small Bifs", // 12
- //"4 groups of 5 random Bifs + 1 group of 5 random Big Bifs"; // 13
+ //"10x Clover Path, 5 groups of 5 random Bifs", // 13
+ //"5x Bifs, 4 groups of 5 random Bifs"; // 14
case 13:
spawner(l("Clover Field"), 1028, 10);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
@log_spawns=@log_spawns+35;
break;
case 14:
- spawner(l("Piou"), 1002, 20);
+ spawner(l("Bif"), 1058, 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
+ spawner(l("Mysterious Bif"), rand(1098,1118), 5);
@log_spawns=@log_spawns+25;
break;
}