-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.sql
13 lines (13 loc) · 1.81 KB
/
items.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('oldwatch', 'Tarnished Watch', 5, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('rubyring', 'Old Ruby Ring', 8, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('goldtooth', 'Gold Tooth', 12, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('peacockfeather', 'Peacock Feather', 15, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('piratecoin', 'Pirate Coin', 15, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('oldbuckle', 'Rusty Belt Buckle', 15, 1, 'item_standard', 0);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('robbingkit', 'Grave Robbery Kit', 1, 1, 'item_standard', 1);
INSERT INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('bone', 'An old Bone', 5, 1, 'item_standard', 0);
INSERT IGNORE INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('rollingpaper', 'Rolling Paper', 20, 1, 'item_standard', 1);
INSERT IGNORE INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('rock', 'Rock', 20, 1, 'item_standard', 1);
INSERT IGNORE INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('pipe', 'Pipe', 3, 1, 'item_standard', 1);
INSERT IGNORE INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('beer', 'Beer', 12, 1, 'item_standard', 1);
INSERT IGNORE INTO `items`(`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES ('book', 'Book', 5, 1, 'item_standard', 1);