issue-9: add sash item proto template

This commit is contained in:
server
2026-04-16 21:08:13 +02:00
parent 494fd980f7
commit 142957f545

35
sql/issue_9_sashes.sql Normal file
View File

@@ -0,0 +1,35 @@
-- Issue #9: classic sash support
-- value0 = absorb percent
-- subtype = COSTUME_SASH
-- wearflag can stay 0 for ITEM_COSTUME, but WEARABLE_COSTUME_SASH is available if you want parity in tools
-- Sample classic tiers
-- Adjust icon/model names and vnums to your asset pack.
INSERT INTO item_proto
(vnum, name, locale_name, type, subtype, size, antiflag, flag, wearflag, immuneflag, gold, shop_buy_price,
limittype0, limitvalue0, limittype1, limitvalue1,
applytype0, applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2,
value0, value1, value2, value3, value4, value5,
socket0, socket1, socket2, refined_vnum, refine_set, magic_pct, specular, socket_pct)
VALUES
(85000, 'sash_common', 'Common Sash', 28, 2, 2, 0, 0, 0, 0, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0, 0, 0,
5, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0),
(85010, 'sash_rare', 'Rare Sash', 28, 2, 2, 0, 0, 0, 0, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0, 0, 0,
10, 1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0),
(85020, 'sash_epic', 'Epic Sash', 28, 2, 2, 0, 0, 0, 0, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0, 0, 0,
15, 2, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0),
(85030, 'sash_legendary', 'Legendary Sash', 28, 2, 2, 0, 0, 0, 0, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0, 0, 0,
20, 3, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0);