🆙 Fix figuredata and figuremap 🆙

This commit is contained in:
Remco Epicnabbo
2026-06-09 20:14:00 +02:00
parent 0e3fc85dce
commit 278eef8a8f
4943 changed files with 175 additions and 312766 deletions
@@ -0,0 +1,37 @@
-- ----------------------------
DROP TABLE IF EXISTS `catalog_items`;
CREATE TABLE `catalog_items` (
`id` int NOT NULL AUTO_INCREMENT,
`item_ids` varchar(666) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`page_id` int NOT NULL DEFAULT 14,
`offer_id` int NOT NULL DEFAULT -1,
`song_id` int UNSIGNED NOT NULL DEFAULT 0,
`order_number` int NOT NULL DEFAULT 1,
`catalog_name` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`cost_credits` int NOT NULL DEFAULT 3,
`cost_points` int NOT NULL DEFAULT 0,
`points_type` int NOT NULL DEFAULT 0 COMMENT '0 for duckets; 5 for diamonds; and any seasonal/GOTW currencies you have in your emu_settings table.',
`amount` int NOT NULL DEFAULT 1,
`limited_sells` int NOT NULL DEFAULT 0 COMMENT 'This automatically logs from the emu; do not change it.',
`limited_stack` int NOT NULL DEFAULT 0 COMMENT 'Change this number to make the item limited.',
`extradata` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`badge` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
`have_offer` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '1',
`club_only` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
`rate` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`, `extradata`) USING BTREE,
INDEX `page_id`(`page_id` ASC) USING BTREE,
INDEX `catalog_name`(`catalog_name` ASC) USING BTREE,
INDEX `costs`(`cost_credits` ASC, `cost_points` ASC, `points_type` ASC) USING BTREE,
INDEX `id`(`id` ASC) USING BTREE,
INDEX `item_ids`(`item_ids` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1996672127 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- ----------------------------
INSERT INTO `catalog_items` VALUES (3, '3', 429, 1054320065, 0, 99, 'photo', 3, 0, 0, 1, 0, 0, '', NULL, '1', '0', NULL);
<!-- =========================================
MERGED RECORDS: Dutch (Primary) + V2-only (Supplemental)
Priority: Dutch data first, then V2-only additions
========================================= -->