From f723943a7b4be4d4fbced0a10d3549f146560c98 Mon Sep 17 00:00:00 2001
From: Kenpachi Developer <Kenpachi.Developer@gmx.de>
Date: Sat, 11 Apr 2020 06:08:20 +0200
Subject: Add jRO exclusive pets

---
 db/re/pet_db.conf | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 88 insertions(+)

(limited to 'db')

diff --git a/db/re/pet_db.conf b/db/re/pet_db.conf
index ca1a00754..f31131653 100644
--- a/db/re/pet_db.conf
+++ b/db/re/pet_db.conf
@@ -2435,4 +2435,92 @@ pet_db:(
 		}
 	">
 },
+// jRO exclusive pets.
+{
+	Id: 3317
+	Name: "Rubylit"
+	EggItem: "Rubylit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			bonus(bAtk, 20);
+		else if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus(bAtk, 10);
+	">
+},
+{
+	Id: 3318
+	Name: "Sapphilit"
+	EggItem: "Sapphilit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			bonus(bMaxHP, 200);
+		else if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus(bMaxHP, 100);
+	">
+},
+{
+	Id: 3319
+	Name: "Emelit"
+	EggItem: "Emelit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL) {
+			bonus(bMaxHP, 100);
+			bonus(bMaxSP, 50);
+		} else if (.@intimacy >= PET_INTIMACY_CORDIAL) {
+			bonus(bMaxHP, 50);
+			bonus(bMaxSP, 25);
+		}
+	">
+},
+{
+	Id: 3320
+	Name: "Topalit"
+	EggItem: "Topalit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			bonus(bMaxSP, 100);
+		else if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus(bMaxSP, 50);
+	">
+},
+{
+	Id: 3321
+	Name: "Amelit"
+	EggItem: "Amelit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			bonus(bMatk, 20);
+		else if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus(bMatk, 10);
+	">
+},
+{
+	Id: 3349
+	Name: "Mythlit"
+	EggItem: "Mythlit_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			bonus(bAllStats, 2);
+		else if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus(bAllStats, 1);
+	">
+},
+{
+	Id: 3306
+	Name: "Tamadora"
+	EggItem: "Tamadora_Egg"
+	EquipScript: <"
+		.@intimacy = getpetinfo(PETINFO_INTIMACY);
+		if (.@intimacy >= PET_INTIMACY_CORDIAL)
+			bonus4(bAutoSpellWhenHit, AL_HEAL, 1, 20, 1);
+		if (.@intimacy >= PET_INTIMACY_LOYAL)
+			skill(AL_HEAL, 1);
+	">
+},
 )
-- 
cgit v1.2.3-70-g09d2