Advertisement
SoL_Alex

Untitled

Nov 21st, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 6.89 KB | None | 0 0
  1. {
  2.     "Name": "Kitchen",
  3.     "Description": "A room used for preparing and cooking meals.",
  4.     "Flora": [],
  5.     "ProductionFacilities": [
  6.         {
  7.             "Name": "Oven",
  8.             "Description": "A kitchen appliance used for baking, roasting, and heating food.",
  9.             "Recipes": [
  10.                 {
  11.                     "Name": "Baked Chicken",
  12.                     "Description": "A simple dish made by baking a whole chicken in the oven.",
  13.                     "Inputs": [
  14.                         {
  15.                             "Name": "Whole Chicken",
  16.                             "Quantity": 1
  17.                         }
  18.                     ],
  19.                     "Outputs": [
  20.                         {
  21.                             "Name": "Baked Chicken",
  22.                             "Quantity": 1
  23.                         }
  24.                     ]
  25.                 },
  26.                 {
  27.                     "Name": "Toasted Bread",
  28.                     "Description": "Sliced bread toasted to a crispy golden brown.",
  29.                     "Inputs": [
  30.                         {
  31.                             "Name": "Bread",
  32.                             "Quantity": 2
  33.                         }
  34.                     ],
  35.                     "Outputs": [
  36.                         {
  37.                             "Name": "Toasted Bread",
  38.                             "Quantity": 2
  39.                         }
  40.                     ]
  41.                 },
  42.                 {
  43.                     "Name": "Roasted Vegetables",
  44.                     "Description": "A mix of vegetables roasted to bring out their natural flavors.",
  45.                     "Inputs": [
  46.                         {
  47.                             "Name": "Carrots",
  48.                             "Quantity": 2
  49.                         },
  50.                         {
  51.                             "Name": "Potatoes",
  52.                             "Quantity": 2
  53.                         }
  54.                     ],
  55.                     "Outputs": [
  56.                         {
  57.                             "Name": "Roasted Vegetables",
  58.                             "Quantity": 1
  59.                         }
  60.                     ]
  61.                 }
  62.             ]
  63.         },
  64.         {
  65.             "Name": "Stove",
  66.             "Description": "A kitchen appliance used for cooking and heating food.",
  67.             "Recipes": [
  68.                 {
  69.                     "Name": "Boiled Water",
  70.                     "Description": "Water boiled to a rolling boil.",
  71.                     "Inputs": [
  72.                         {
  73.                             "Name": "Water",
  74.                             "Quantity": 1
  75.                         }
  76.                     ],
  77.                     "Outputs": [
  78.                         {
  79.                             "Name": "Boiled Water",
  80.                             "Quantity": 1
  81.                         }
  82.                     ]
  83.                 },
  84.                 {
  85.                     "Name": "Fried Egg",
  86.                     "Description": "A simple dish made by frying an egg in a pan.",
  87.                     "Inputs": [
  88.                         {
  89.                             "Name": "Egg",
  90.                             "Quantity": 1
  91.                         }
  92.                     ],
  93.                     "Outputs": [
  94.                         {
  95.                             "Name": "Fried Egg",
  96.                             "Quantity": 1
  97.                         }
  98.                     ]
  99.                 },
  100.                 {
  101.                     "Name": "Cooked Noodles",
  102.                     "Description": "Noodles cooked in boiling water to a tender texture.",
  103.                     "Inputs": [
  104.                         {
  105.                             "Name": "Noodles",
  106.                             "Quantity": 1
  107.                         },
  108.                         {
  109.                             "Name": "Boiled Water",
  110.                             "Quantity": 1
  111.                         }
  112.                     ],
  113.                     "Outputs": [
  114.                         {
  115.                             "Name": "Cooked Noodles",
  116.                             "Quantity": 1
  117.                         }
  118.                     ]
  119.                 }
  120.             ]
  121.         },
  122.         {
  123.             "Name": "Sink",
  124.             "Description": "A kitchen fixture used for washing and cleaning dishes, hands, and food.",
  125.             "Recipes": [
  126.                 {
  127.                     "Name": "Clean Dishes",
  128.                     "Description": "Dirty dishes washed and rinsed to a clean state.",
  129.                     "Inputs": [
  130.                         {
  131.                             "Name": "Dirty Dishes",
  132.                             "Quantity": 1
  133.                         },
  134.                         {
  135.                             "Name": "Water",
  136.                             "Quantity": 1
  137.                         }
  138.                     ],
  139.                     "Outputs": [
  140.                         {
  141.                             "Name": "Clean Dishes",
  142.                             "Quantity": 1
  143.                         }
  144.                     ]
  145.                 },
  146.                 {
  147.                     "Name": "Wash Hands",
  148.                     "Description": "Dirty hands washed and rinsed to a clean state.",
  149.                     "Inputs": [
  150.                         {
  151.                             "Name": "Dirty Hands",
  152.                             "Quantity": 1
  153.                         },
  154.                         {
  155.                             "Name": "Water",
  156.                             "Quantity": 1
  157.                         }
  158.                     ],
  159.                     "Outputs": [
  160.                         {
  161.                             "Name": "Clean Hands",
  162.                             "Quantity": 1
  163.                         }
  164.                     ]
  165.                 },
  166.                 {
  167.                     "Name": "Wash Produce",
  168.                     "Description": "Dirty produce washed and rinsed to a clean state.",
  169.                     "Inputs": [
  170.                         {
  171.                             "Name": "Dirty Produce",
  172.                             "Quantity": 1
  173.                         },
  174.                         {
  175.                             "Name": "Water",
  176.                             "Quantity": 1
  177.                         }
  178.                     ],
  179.                     "Outputs": [
  180.                         {
  181.                             "Name": "Clean Produce",
  182.                             "Quantity": 1
  183.                         }
  184.                     ]
  185.                 }
  186.             ]
  187.         }
  188.     ],
  189.     "LikelyFlora": [],
  190.     "LikelyFauna": [],
  191.     "LikelyBuildings": [],
  192.     "LikelyLooseItems": [
  193.         "Knife",
  194.         "Fork",
  195.         "Spoon",
  196.         "Plate",
  197.         "Bowl",
  198.         "Pot",
  199.         "Pan",
  200.         "Cutting Board"
  201.     ],
  202.     "LikelyProductionFacilities": [
  203.         "Oven",
  204.         "Stove",
  205.         "Sink"
  206.     ]
  207. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement