-
Notifications
You must be signed in to change notification settings - Fork 9
/
Database.sql
25 lines (25 loc) · 1.64 KB
/
Database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
INSERT INTO `items` (`item`, `label`, `limit`, `can_remove`, `type`, `usable`) VALUES
('consumable_herb_currant','Currant Herbs', 1, 1, 'item_standard', 1),
('blackberry', 'BlackBerry', 50, 1, 'item_standard', 1),
('blueberry', 'BlueBerry', 50, 1, 'item_standard', 1),
('consumable_herb_wintergreen_berry', 'Wintergreen Berry', 50, 1, 'item_standard', 1),
('consumable_herb_evergreen_huckleberry', 'Everygreen Berry', 50, 1, 'item_standard', 1),
('consumable_orange', 'Orange', 20, 1, 'item_standard', 1),
('consumable_pear', 'Pear', 20, 1, 'item_standard', 1),
('consumable_peach', 'Peach', 20, 1, 'item_standard', 1),
('consumable_apple', 'Apple', 20, 1, 'item_standard', 1),
('oregano', 'Oregano', 25, 1, 'item_standard', 1),
('consumable_herb_vanilla_flower', 'Vanilla', 30, 1, 'item_standard', 1),
('consumable_herb_indian_tobacco', 'Tabacco', 30, 1, 'item_standard', 1),
('consumable_medicine', 'Medicine', 15, 1, 'item_standard', 1),
('consumable_coffee', 'Coffee', 30, 1, 'item_standard', 1),
('consumable_meat_greavy', 'Greavy Meat', 30, 1, 'item_standard', 1),
('consumable_salmon_can', 'Can Salmon', 30, 1, 'item_standard', 1),
('campfire', 'Campfire', 30, 1, 'item_standard', 1),
('consumable_herb_chanterelles', 'Chanterelles', 30, 1, 'item_standard', 1),
('tent', 'Tent', 1, 1, 'item_standard', 1),
('weapon_fishingrod', 'Fishing Rod', 1, 1, 'item_standard', 1),
('bait', 'Fish Bait', 20, 1, 'item_standard', 1),
('consumable_kidneybeans_can', 'Can Kidneybeans', 20, 1, 'item_standard', 1),
('consumable_haycube', 'Haycube', 2, 1, 'item_standard', 1),
('wooden_boards', 'Wooden Boards', 10, 1, 'item_standard', 1);