chat-restaruacja/attributes.json

91 lines
1.2 KiB
JSON
Raw Normal View History

{
2024-06-10 00:54:09 +02:00
"dough": [
"thick"
],
"drink": {
"pepsi": {
"price": 10
2024-06-10 00:53:38 +02:00
},
2024-06-10 00:54:09 +02:00
"cola": {
"price": 10
},
2024-06-10 00:54:09 +02:00
"water": {
"price": 5
2024-06-09 19:48:26 +02:00
}
2024-06-10 00:54:09 +02:00
},
"food": [
"pizza"
],
"meat": [
"chicken",
"ham",
"tuna"
],
"sauce": [
"garlic",
"1000w"
],
"ingredient": {
"chicken": {},
"tuna": {},
"pineapple": {},
"onion": {},
"cheese": {},
"tomato": {},
"ham": {},
"pepper": {}
},
"menu": [
"capri",
"margarita",
"hawajska",
"barcelona",
"tuna"
],
"pizza": {
"capri": {
"ingredient": [
"tomato",
"ham",
"mushrooms",
"cheese"
],
"price": 25
},
"margarita": {
"ingredient": [
"tomato",
"cheese"
],
"price": 20
},
"hawajska": {
"ingredient": [
"tomato",
"pineapple",
"chicken",
"cheese"
],
"price": 30
},
"barcelona": {
"ingredient": [
"tomato",
"onion",
"ham",
"pepper",
"cheese"
],
"price": 40
},
"tuna": {
"ingredient": [
"tomato",
"tuna",
"onion",
"cheese"
],
"price": 40
}
}
}