diff options
author | gumi <git@gumi.ca> | 2020-08-22 10:23:01 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-22 10:23:01 -0400 |
commit | fee0e560fd584ef469db60fdb00a63c171c2c093 (patch) | |
tree | 82bed2d704de265aa79afa31519c716135b2d733 /db/re | |
parent | 90988ae2ffab674895d4d1d52a6cccd7b6e1ab2b (diff) | |
download | serverdata-fee0e560fd584ef469db60fdb00a63c171c2c093.tar.gz serverdata-fee0e560fd584ef469db60fdb00a63c171c2c093.tar.bz2 serverdata-fee0e560fd584ef469db60fdb00a63c171c2c093.tar.xz serverdata-fee0e560fd584ef469db60fdb00a63c171c2c093.zip |
add card groups for dyes
Diffstat (limited to 'db/re')
-rw-r--r-- | db/re/item_db.conf | 24 | ||||
-rw-r--r-- | db/re/item_group.conf | 44 |
2 files changed, 66 insertions, 2 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index e2154da9..63969f1c 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -37,7 +37,7 @@ item_db: ( AegisName: "Aegis_Name" (string) Name: "Item Name" (string) // ================ Optional fields =============================== - Type: Item Type (string, defaults to "IT_ETC") + Type: Item Type (string, defaults to "IT_ETC"; use "IT_VIRTUAL" for fake items) Buy: Buy Price (int, defaults to Sell * 2) Sell: Sell Price (int, defaults to Buy / 2) Weight: Item Weight (int, defaults to 0) @@ -155,7 +155,8 @@ item_db: ( 3200 3499 = Neck Armors 3500 3999 = Weapons 4000 4999 = Pets -5000 5999 = Cards +5000 5499 = Cards +5500 5999 = Card Groups (using item_group.conf) 6000 6999 = Bows 7000 7999 = Arrows 8000 8499 = LEGACY merge items, generic or usable @@ -5225,6 +5226,25 @@ item_db: ( Sell: 80 Loc: ["EQP_HEAD_TOP","EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, +// Card Groups (using item_group.conf) +{ + Id: 5500 + AegisName: "BasicSilkDyes" + Name: "Basic Silk Dyes" + Type: "IT_VIRTUAL" +}, +{ + Id: 5501 + AegisName: "ExtendedSilkDyes" + Name: "Extended Silk Dyes" + Type: "IT_VIRTUAL" +}, +{ + Id: 5502 + AegisName: "BasicCottonDyes" + Name: "Basic Cotton Dyes" + Type: "IT_VIRTUAL" +}, // Bows { Id: 6000 diff --git a/db/re/item_group.conf b/db/re/item_group.conf index e6351128..a1fffa25 100644 --- a/db/re/item_group.conf +++ b/db/re/item_group.conf @@ -17,3 +17,47 @@ ("Item_Name",Repeat_Count) ) */ + +BasicSilkDyes: ( + "PitchBlackSilkDye", + "ChocolateSilkDye", + "CrimsonSilkDye", +) + +ExtendedSilkDyes: ( + "PitchBlackSilkDye", + "ChocolateSilkDye", + "CrimsonSilkDye", + "TomatoSilkDye", + "GoldenrodSilkDye", + "SunflowerSilkDye", + "OliveSilkDye", + "SeaGreenSilkDye", + "MintSilkDye", + "MidnightBlueSilkDye", + "SlatBlueSilkDye", + "OrchidSilkDye", + "PinkiePinkSilkDye", +) + +BasicCottonDyes: ( + "BlackCottonDye", + "SilverCottonDye", + "CamelCottonDye", + "BrownCottonDye", + "OrangeCottonDye", + "DarkRedCottonDye", + "RedCottonDye", + "FuschiaCottonDye", + "PinkCottonDye", + "MauveCottonDye", + "PurpleCottonDye", + "NavyBlueCottonDye", + "BlueGrayCottonDye", + "BlueCottonDye", + "TealCottonDye", + "GreenCottonDye", + "LimeCottonDye", + "KhakiCottonDye", + "YellowCottonDye", +) |