diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-08 19:56:12 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-08 19:56:12 -0200 |
commit | 86389b43c807e0f21af88867ed7ad9e668e41ed3 (patch) | |
tree | 8b68a0d5b1838fa23b036b2844080ca11561d783 /db/re | |
parent | 567acc600a13dfcb24ee6ffa18a60335721b6426 (diff) | |
download | serverdata-86389b43c807e0f21af88867ed7ad9e668e41ed3.tar.gz serverdata-86389b43c807e0f21af88867ed7ad9e668e41ed3.tar.bz2 serverdata-86389b43c807e0f21af88867ed7ad9e668e41ed3.tar.xz serverdata-86389b43c807e0f21af88867ed7ad9e668e41ed3.zip |
Valentine Day not working yet
Diffstat (limited to 'db/re')
-rw-r--r-- | db/re/item_db.conf | 24 | ||||
-rw-r--r-- | db/re/mob_db.conf | 41 |
2 files changed, 64 insertions, 1 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 1e51a6a2e..40291ca80 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -2697,6 +2697,30 @@ item_db: ( dispbottom l("The potion expired!"); "> }, +{ + Id: 641 + AegisName: "BoxOfChocolates" + Name: "Box Of Chocolates" + Type: "IT_USABLE" + Buy: 3700 + Sell: 0 + Weight: 11 + Refine: false + ViewSprite: 641 + Script: <" + if ($EVENT$ != "Valentine" || #VALENTINE_OPENED >= #VALENTINE_RECEIVED) { + dispbottom l("Past due date."); + } else { + // I know technically this is wrong grammar, but I want fixed width + #VALENTINE_OPENED=#VALENTINE_OPENED+1; + #VALENTINE_POINTS=#VALENTINE_POINTS+1; + if (rand(0,1)) + dispbottom l("It's tasty ^.^"); + else + dispbottom l("It's yummy ^.^"); + } + "> +}, // Mounts (690 to 699, probably there will be extra IDs) { diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index d7a96ed34..d430a0c1c 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -1608,7 +1608,46 @@ mob_db: ( FluffyHat: 1 } }, -// 1050 is free +{ + Id: 1050 + SpriteName: "LoveFluffy" + Name: "Lovely Fluffy" + Lv: 18 + Hp: 1200 + Sp: 0 + Exp: 18 + JExp: 3 + AttackRange: 1 + Attack: [60, 250] + Def: 10 + Mdef: 0 + Stats: { + Str: 14 + Agi: 1 + Vit: 10 + Int: 1 + Dex: 30 + Luk: 5 + } + ChaseRange: 12 + Race: 2 + Element: (1, 1) + Mode: { + CanMove: true + CanAttack: true + ChangeChase: true + CastSensorChase: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Drops: { + LoveLetter: 200 + Carrot: 41 + FluffyHat: 1 + } +}, { Id: 1051 SpriteName: "DarkLizard" |