-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.sql
31 lines (27 loc) · 1005 Bytes
/
items.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
26
27
28
29
30
31
INSERT INTO `items` (`name`, `label`, `limit`, `rare`, `can_remove`) VALUES
('cocacola', 'Coca Cola', -1, 0, 1),
('fanta', 'Fanta Exotic', -1, 0, 1),
('sprite', 'Sprite', -1, 0, 1),
('coffee', 'Coffee', -1, 0, 1),
('beer', 'Beer', -1, 0, 1),
('plzen', 'Plzen', -1, 0, 1),
('wine', 'Wine', -1, 0, 1),
('vodka', 'Vodka', -1, 0, 1),
('tatra', 'Tatra', -1, 0, 1),
('rhum', 'Rhum', -1, 0, 1),
('limonade', 'Limonade', -1, 0, 1),
('grand_cru', 'Grand_cru', -1, 0, 1),
('golem', 'Golem', -1, 0, 1),
('champagne', 'Champagne', -1, 0, 1),
('bolchips', 'Bolchips', -1, 0, 1),
('bolpistache', 'Bolpistache', -1, 0, 1),
('bolcacahuetes', 'Bolcacahuetes', -1, 0, 1),
('bolnoixcajou', 'Bolnoixcajou', -1, 0, 1),
('pizza_salam', 'Pizza salam', -1, 0, 1),
('pizza_mozzarella', 'Pizza mozzarella', -1, 0, 1),
('lasagne', 'Lasagne', -1, 0, 1),
('salat', 'Salat', -1, 0, 1),
('cigarett', 'Cigarette', -1, 0, 1),
('rarecigar', 'Rarecigar', -1, 0, 1),
('lotteryticket', 'Trisslott', -1, 0, 1)
;