diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 3b4e235b85c..ce503a613d9 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -183276,10 +183276,16 @@ Body: View: 2343 - Id: 410224 AegisName: C_Pope_Ribbon_R - Name: Costume Red Ribbon + Name: Costume Pope Ribbon (Red) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true + Trade: + NoDrop: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true ArmorLevel: 1 View: 2152 - Id: 410226 diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index d3561705402..045c46f10aa 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -90602,6 +90602,15 @@ Body: bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; } + - Id: 315055 + AegisName: aegis_315055 + Name: Flower Garden + Type: Card + SubType: Enchant + Script: | + hateffect FOOTPRINT_EF_FLOWER_GARDEN,true; + UnEquipScript: | + hateffect FOOTPRINT_EF_FLOWER_GARDEN,false; - Id: 1000000 AegisName: IDTest_event Name: IDTest event @@ -102009,6 +102018,11 @@ Body: NoDrop: true NoMail: true NoAuction: true + - Id: 1002822 + AegisName: aegis_1002822 + Name: "[Footprints] Flower Garden" + Type: Etc + Weight: 100 - Id: 1002827 AegisName: Energy_Xtal_RR_TW Name: Energy Crystal (Ring of Restoration) # !todo check english name diff --git a/src/map/script.hpp b/src/map/script.hpp index 9d7cc3b7b74..307470373e6 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -2197,6 +2197,8 @@ enum e_hat_effects : int16{ HAT_EF_C_CLB_GAT_DOC, HAT_EF_C_EYE_OF_NECROMANCER, HAT_EF_C_JAOW_PIRUN, + FOOTPRINT_EF_FLOWER_GARDEN, + HAT_EF_C_ANGEL_GIFT, HAT_EF_MAX }; diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index f9be9c329b5..93524a11d4f 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -10224,6 +10224,8 @@ export_constant(HAT_EF_C_CLB_GAT_DOC); export_constant(HAT_EF_C_EYE_OF_NECROMANCER); export_constant(HAT_EF_C_JAOW_PIRUN); + export_constant(FOOTPRINT_EF_FLOWER_GARDEN); + export_constant(HAT_EF_C_ANGEL_GIFT); /* pet catch */ export_constant(PET_CATCH_UNIVERSAL_NO_BOSS);