chat-restaruacja/attributes.json

54 lines
1.3 KiB
JSON
Raw Normal View History

{
2024-06-07 12:49:41 +02:00
"address": null,
"order-complete": false,
2024-05-03 00:19:00 +02:00
"dough": ["thick"],
"drink": ["pepsi", "cola", "water"],
"food": ["pizza"],
"meat": ["chicken", "ham", "tuna"],
"sauce": ["garlic", "1000w"],
"ingredient": {
2024-05-03 00:19:00 +02:00
"chicken": {},
"tuna": {},
"pineapple": {},
"onion": {},
2024-05-03 00:19:00 +02:00
"cheese": {},
"tomato": {},
2024-05-03 00:19:00 +02:00
"ham": {},
2024-05-08 21:26:16 +02:00
"pepper": {}
},
2024-05-03 00:19:00 +02:00
"menu": ["capri", "margarita", "hawajska", "barcelona", "tuna"],
"pizza": {
2024-05-03 00:19:00 +02:00
"capri": {
"ingredient": ["tomato", "ham", "mushrooms", "cheese"],
"price": 25
},
"margarita": {
"ingredient": ["tomato", "cheese"],
"price": 20
},
"hawajska": {
"ingredient": ["tomato", "pineapple", "chicken", "cheese"],
"price": 30
},
"barcelona": {
2024-05-03 00:19:00 +02:00
"ingredient": ["tomato", "onion", "ham", "pepper", "cheese"],
"price": 40
},
2024-05-03 00:19:00 +02:00
"tuna": {
"ingredient": ["tomato", "tuna", "onion", "cheese"],
"price": 40
}
},
"size": {
"m": {
"price_multiplier": 1
},
"l": {
"price_multiplier": 1.2
},
"xl": {
"price_multiplier": 1.4
}
},
"order": []
}