PHP Code:
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`, `is_arrow`) VALUES (FURNI_ID_HERE, 'Arceg', 'Arceg', 's', 1, 1, 1, '0', '0', '0', SPRITE_ID_HERE, '1', '1', '1', '1', '1', 'Default', 1, '0', '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`, `is_arrow`) VALUES (FURNI_ID_HERE, 'Luceg', 'Luceg', 's', 1, 1, 1, '0', '0', '0', SPRITE_ID_HERE, '1', '1', '1', '1', '1', 'Default', 1, '0', '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`, `is_arrow`) VALUES (FURNI_ID_HERE, 'Reseg', 'Reseg', 's', 1, 1, 1, '0', '0', '0', SPRITE_ID_HERE, '1', '1', '1', '1', '1', 'Default', 1, '0', '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`, `is_arrow`) VALUES (FURNI_ID_HERE, 'Zekeg', 'Zekeg', 's', 1, 1, 1, '0', '0', '0', SPRITE_ID_HERE, '1', '1', '1', '1', '1', 'Default', 1, '0', '0');
Catalogue Items:
PHP Code:
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`) VALUES (FURNI_ID_HERE, 'PAGE_ID_HERE', 'FURNI_ID_HERE', 'Arceg', 'COIN_PRICE', 'PIXEL_PRICE', '0', '1');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`) VALUES (FURNI_ID_HERE, 'PAGE_ID_HERE', 'FURNI_ID_HERE', 'Luceg', 'COIN_PRICE', 'PIXEL_PRICE', '0', '1');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`) VALUES (FURNI_ID_HERE, 'PAGE_ID_HERE', 'FURNI_ID_HERE', 'Reseg', 'COIN_PRICE', 'PIXEL_PRICE', '0', '1');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`) VALUES (FURNI_ID_HERE, 'PAGE_ID_HERE', 'FURNI_ID_HERE', 'Zekeg', 'COIN_PRICE', 'PIXEL_PRICE', '0', '1');
Furnidata:
PHP Code:
["s","SPRITE_ID_HERE","Arceg","6_NUMBERS_HERE","0","1","1","Arceus Dino","The Creator",","-1,"-1"],
["s","SPRITE_ID_HERE","Luceg","6_NUMBERS_HERE","0","1","1","Lucario Dino","Iron Fist Hiyahhh!",","-1,"-1"],
["s","SPRITE_ID_HERE","Reseg","6_NUMBERS_HERE","0","1","1","Reshiram Dino","Dayummmm",","-1,"-1"],
["s","SPRITE_ID_HERE","Zekeg","6_NUMBERS_HERE","0","1","1","Zekrom Dino","Dayummmm",","-1,"-1"],
+1 if you like. Any feedback is Welcome :)