Advertisement
SteamPunk_Devil

Meals.xml

Aug 24th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ThingDefs>
  3.  
  4.     <ThingDef Name="MealBase" Abstract="True">
  5.         <eType>Item</eType>
  6.         <label>Meal</label>
  7.         <thingClass>Meal</thingClass>
  8.         <category>Item</category>
  9.         <useStandardHealth>true</useStandardHealth>
  10.         <selectable>true</selectable>
  11.         <maxHealth>50</maxHealth>
  12.         <altitudeLayer>Item</altitudeLayer>
  13.         <stackLimit>10</stackLimit>
  14.         <tickerType>Rare</tickerType>
  15.         <description>"Meal lacks desc."</description>
  16.         <flammability>1.0</flammability>
  17.         <storeCategories>
  18.             <li>FoodMeals</li>
  19.         </storeCategories>
  20.         <alwaysHaulable>true</alwaysHaulable>
  21.         <comps>
  22.             <li>
  23.                 <compClass>CompForbiddable</compClass>
  24.             </li>
  25.             </comps>
  26.         <pathCost>15</pathCost>
  27.         <resourceReadoutPriority>Last</resourceReadoutPriority>
  28.     <drawGUIOverlay>true</drawGUIOverlay>
  29.   </ThingDef>
  30.  
  31.  
  32.  
  33.     <ThingDef ParentName="MealBase">
  34.         <defName>VanillaIceCream</defName>
  35.         <label>Vanilla Ice Cream</label>
  36.         <description>A bowl of tasty Vanilla ice cream.</description>
  37.         <textureFolderPath>Things/Item/Meal/VanillaIceCream</textureFolderPath>
  38.         <food>
  39.             <eatenDirectThought>PlainIce</eatenDirectThought>
  40.             <quality>MealFine</quality>
  41.             <nutrition>80</nutrition>
  42.             <eatEffect>EatVegetarian</eatEffect>
  43.             <ticksBeforeSpoil>40000</ticksBeforeSpoil>
  44.             <soundEat>Meal_Eat</soundEat>
  45.         </food>
  46.     </ThingDef>
  47.  
  48. </ThingDefs>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement