Trying to improve bandage making in vegetable garden, something seems missing...

Started by Tanelorn, January 31, 2017, 08:56:24 PM

Previous topic - Next topic

Tanelorn

Hi all. Vegetable garden gives you the ability to make bandage kits at the tailor bench and the drug table. The problem is, you can only use cloth and not the new fabrics of hemp and linen. I went into the mod and searched for the recipe, but amazingly it doesn't exist!!! There is a definition for the bandage kit which lists its cost and where it can be made, but it's not a recipe so I don't think I can use the code for optional ingredients. I would greatly appreciate some advice here. Can I safely make a recipe for it as there doesn't seem to be one?

  <ThingDef ParentName="VG_ResourceBase">
    <defName>Bandagekit</defName>
    <label>Bandage Kit</label>
    <description>A pack of bandages made from cloth. Less potent than medical kits.</description>
    <thingClass>Medicine</thingClass>
    <graphicData>
      <texPath>Things/Item/Bandagekit</texPath>
      <graphicClass>Graphic_Single</graphicClass>
    </graphicData>
    <soundInteract>Standard_Drop</soundInteract>
    <soundDrop>Standard_Drop</soundDrop>
    <statBases>
      <MaxHitPoints>100</MaxHitPoints>
      <MarketValue>5</MarketValue>
      <Flammability>1.0</Flammability>
      <MedicalPotency>0.30</MedicalPotency>
      <DeteriorationRate>2</DeteriorationRate>
      <WorkToMake>350</WorkToMake>
      <Mass>0.2</Mass>
    </statBases>
    <thingCategories>
      <li>Medicine</li>
    </thingCategories>
    <tickerType>Rare</tickerType>
    <costList>
      <Cloth>10</Cloth>
    </costList>
    <recipeMaker>
      <workSpeedStat>DrugProductionSpeed</workSpeedStat>
      <workSkill>Medicine</workSkill>
      <recipeUsers>
        <li>DrugLab</li>
        <li>HandTailoringBench</li>
        <li>ElectricTailoringBench</li>
      </recipeUsers>
      <skillRequirements>
        <li>
          <skill>Medicine</skill>
          <minLevel>2</minLevel>
        </li>
        <li>
          <skill>Crafting</skill>
          <minLevel>2</minLevel>
        </li>
      </skillRequirements>
    </recipeMaker>