Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - blohod

#1
Releases / [1.0] Donkeys - Useful Pack Animals
February 02, 2019, 01:31:16 AM
Donkeys



Description:
Adds the Donkey, a peaceful herding herbivore descended from domesticated stock. Often used as a pack animal.

Donkeys can haul and rescue as well as be used as a pack animal by colonists and traders.

They spawn wild and may be sold by traders, their hide can be used to make clothes.

Download
Mod DB: https://www.moddb.com/mods/donkeys/downloads/donkeys-1-0
Steam: https://steamcommunity.com/sharedfiles/filedetails/?id=1642210117

How to install:
- Unzip the contents and place them in your RimWorld/Mods folder.
- Activate the mod in the mod menu in the game.

Modpacks
You may put this in your modpack on the condition that you inform me by replying to this thread.
#2
Help / Making animal spawn in biomes
August 07, 2017, 04:40:54 AM
I am trying to make my animal spawn naturally in the wild, however when I start the game there are a lot of errors in the log. Does anyone know how I can make my animal spawn naturally? Additionally I would like traders to use my animal as an option for a pack animal, anyone know how to do that?

Log:
https://pastebin.com/ZWyJ87hj

My code:
<ThingDef ParentName="AnimalThingBase">
    <defName>Donkey</defName>
    <label>donkey</label>
    <description>A peaceful herding herbivore descended from domesticated stock. Often used as a pack animal.</description>
    <statBases>
      <MoveSpeed>4.2</MoveSpeed>
      <ComfyTemperatureMin>-14</ComfyTemperatureMin>
      <MarketValue>430</MarketValue>
    </statBases>
    <verbs>
      <li>
        <verbClass>Verb_MeleeAttack</verbClass>
        <defaultCooldownTime>1.65</defaultCooldownTime>
        <meleeDamageBaseAmount>11</meleeDamageBaseAmount>
        <meleeDamageDef>Blunt</meleeDamageDef>
        <linkedBodyPartsGroup>FrontLeftLeg</linkedBodyPartsGroup>
      </li>
      <li>
        <verbClass>Verb_MeleeAttack</verbClass>
        <defaultCooldownTime>1.65</defaultCooldownTime>
        <meleeDamageBaseAmount>11</meleeDamageBaseAmount>
        <meleeDamageDef>Blunt</meleeDamageDef>
        <linkedBodyPartsGroup>FrontRightLeg</linkedBodyPartsGroup>
      </li>
      <li>
        <verbClass>Verb_MeleeAttack</verbClass>
        <defaultCooldownTime>1.65</defaultCooldownTime>
        <meleeDamageBaseAmount>4</meleeDamageBaseAmount>
        <meleeDamageDef>Blunt</meleeDamageDef>
        <commonality>0.01</commonality>
        <linkedBodyPartsGroup>HeadAttackTool</linkedBodyPartsGroup>
  </li>
    </verbs>
    <comps>
      <li Class="CompProperties_Milkable">
        <milkDef>Milk</milkDef>
        <milkIntervalDays>2</milkIntervalDays>
        <milkAmount>3</milkAmount>
      </li>
    </comps>
    <race>
      <herdAnimal>true</herdAnimal>
      <body>QuadrupedAnimalWithHooves</body>
      <baseBodySize>1.5</baseBodySize>
      <baseHealthScale>1.4</baseHealthScale>
<baseHungerRate>0.60</baseHungerRate>
      <foodType>VegetarianRoughAnimal</foodType>
      <leatherColor>(217, 179, 140)</leatherColor>
      <leatherInsulation>1.0</leatherInsulation>
      <gestationPeriodDays>30</gestationPeriodDays>
      <wildness>0.1</wildness>
      <nuzzleMtbHours>120</nuzzleMtbHours>
<packAnimal>true</packAnimal>
      <lifeExpectancy>30</lifeExpectancy>
      <lifeStageAges>
        <li>
          <def>AnimalBaby</def>
          <minAge>0</minAge>
        </li>
        <li>
          <def>AnimalJuvenile</def>
          <minAge>0.25</minAge>
        </li>
        <li>
          <def>AnimalAdult</def>
          <minAge>0.5</minAge>
          <soundWounded>Pawn_Elk_Wounded</soundWounded>
          <soundDeath>Pawn_Elk_Death</soundDeath>
          <soundCall>Pawn_Elk_Call</soundCall>
          <soundAngry>Pawn_Elk_Angry</soundAngry>
        </li>
      </lifeStageAges>
      <soundMeleeHitPawn>Pawn_Melee_BigBash_HitPawn</soundMeleeHitPawn>
      <soundMeleeHitBuilding>Pawn_Melee_BigBash_HitBuilding</soundMeleeHitBuilding>
      <soundMeleeMiss>Pawn_Melee_BigBash_Miss</soundMeleeMiss>
  <wildBiomes>
        <li>
          <biome>AridShrubland</biome>
          <animal>Donkey</animal>
          <commonality>0.5</commonality>
        </li>
        <li>
          <biome>Desert</biome>
          <animal>Donkey</animal>
          <commonality>0.1</commonality>
        </li>
<li>
          <biome>BorealForest</biome>
          <animal>Donkey</animal>
          <commonality>0.5</commonality>
        </li>
<li>
          <biome>Tundra</biome>
          <animal>Donkey</animal>
          <commonality>0.3</commonality>
        </li>
<li>
          <biome>TemperateForest</biome>
          <animal>Donkey</animal>
          <commonality>0.2</commonality>
        </li>
<li>
          <biome>TropicalRainforest</biome>
          <animal>Donkey</animal>
          <commonality>0.1</commonality>
        </li>
      </wildBiomes>
    </race>
    <tradeTags>
      <li>StandardAnimal</li>
    </tradeTags>
  </ThingDef>

#3
Help / Texture help
August 05, 2017, 12:00:20 AM
I don't understand <texPath>, what am I doing wrong?

Ingame error:

Resulting in:


My code (most not changed from muffalo yet, only interested in problem with finding the texture I have changed):
<ThingDef ParentName="AnimalThingBase">
    <defName>Donkey</defName>
    <label>donkey</label>
    <description>A large herding herbivore descended from buffalo and adapted for some exotic environment. Peaceful unless disturbed.</description>
    <statBases>
      <MoveSpeed>3.6</MoveSpeed>
      <ComfyTemperatureMin>-60</ComfyTemperatureMin>
      <MarketValue>500</MarketValue>
    </statBases>
    <verbs>
      <li>
        <verbClass>Verb_MeleeAttack</verbClass>
        <defaultCooldownTime>1.65</defaultCooldownTime>
        <meleeDamageBaseAmount>10</meleeDamageBaseAmount>
        <meleeDamageDef>Blunt</meleeDamageDef>
        <linkedBodyPartsGroup>HeadAttackTool</linkedBodyPartsGroup>
      </li>
    </verbs>
    <comps>
      <li Class="CompProperties_Milkable">
        <milkDef>Milk</milkDef>
        <milkIntervalDays>2</milkIntervalDays>
        <milkAmount>12</milkAmount>
      </li>
      <li Class="CompProperties_Shearable">
        <woolDef>WoolMuffalo</woolDef>
        <shearIntervalDays>25</shearIntervalDays>
        <woolAmount>100</woolAmount>
      </li>
    </comps>
    <race>
      <herdAnimal>true</herdAnimal>
      <body>QuadrupedAnimalWithHooves</body>
      <baseBodySize>2.1</baseBodySize>
      <baseHealthScale>1.75</baseHealthScale>
<baseHungerRate>0.85</baseHungerRate>
      <foodType>VegetarianRoughAnimal</foodType>
      <leatherColor>(152,170,174)</leatherColor>
      <leatherInsulation>1.0</leatherInsulation>
      <gestationPeriodDays>25</gestationPeriodDays>
      <wildness>0.5</wildness>
      <nuzzleMtbHours>120</nuzzleMtbHours>
<packAnimal>true</packAnimal>
      <lifeExpectancy>15</lifeExpectancy>
      <lifeStageAges>
        <li>
          <def>AnimalBaby</def>
          <minAge>0</minAge>
        </li>
        <li>
          <def>AnimalJuvenile</def>
          <minAge>0.25</minAge>
        </li>
        <li>
          <def>AnimalAdult</def>
          <minAge>0.5</minAge>
          <soundWounded>Pawn_Muffalo_Wounded</soundWounded>
          <soundDeath>Pawn_Muffalo_Death</soundDeath>
          <soundCall>Pawn_Muffalo_Call</soundCall>
          <soundAngry>Pawn_Muffalo_Angry</soundAngry>
        </li>
      </lifeStageAges>
      <soundMeleeHitPawn>Pawn_Melee_BigBash_HitPawn</soundMeleeHitPawn>
      <soundMeleeHitBuilding>Pawn_Melee_BigBash_HitBuilding</soundMeleeHitBuilding>
      <soundMeleeMiss>Pawn_Melee_BigBash_Miss</soundMeleeMiss>
    </race>
    <tradeTags>
      <li>StandardAnimal</li>
    </tradeTags>
  </ThingDef>
  <PawnKindDef Name="Donkey" ParentName="AnimalKindBase">
    <defName>Donkey</defName>
    <label>donkey</label>
    <race>Donkey</race>
    <combatPower>90</combatPower>
    <wildSpawn_spawnWild>true</wildSpawn_spawnWild>
    <wildSpawn_EcoSystemWeight>1</wildSpawn_EcoSystemWeight>
    <wildSpawn_GroupSizeRange>
      <min>3</min>
      <max>9</max>
    </wildSpawn_GroupSizeRange>
    <lifeStages>
      <li>
        <label>muffalo calf</label>
        <labelPlural>muffalo calves</labelPlural>
        <bodyGraphicData>
          <texPath>Things/Pawn/Animal/Donkey/Donkey</texPath>
          <drawSize>1.5</drawSize>
          <shadowData>
            <volume>(0.4, 0.3, 0.3)</volume>
            <offset>(0,0,-0.2)</offset>
          </shadowData>
        </bodyGraphicData>
        <dessicatedBodyGraphicData>
          <texPath>Things/Pawn/Animal/Muffalo/MuffaloDessicated</texPath>
          <drawSize>1.5</drawSize>
        </dessicatedBodyGraphicData>
      </li>
      <li>
        <bodyGraphicData>
          <texPath>Things/Pawn/Animal/Donkey/Donkey</texPath>
          <drawSize>2.25</drawSize>
          <shadowData>
            <volume>(0.6, 0.45, 0.45)</volume>
            <offset>(0,0,-0.25)</offset>
          </shadowData>
        </bodyGraphicData>
        <dessicatedBodyGraphicData>
          <texPath>Things/Pawn/Animal/Muffalo/MuffaloDessicated</texPath>
          <drawSize>2.25</drawSize>
        </dessicatedBodyGraphicData>
      </li>
      <li>
        <bodyGraphicData>
          <texPath>Things/Pawn/Animal/Donkey/Donkey</texPath>
          <drawSize>3</drawSize>
          <shadowData>
            <volume>(0.8, 0.6, 0.6)</volume>
            <offset>(0,0,-0.3)</offset>
          </shadowData>
        </bodyGraphicData>
        <dessicatedBodyGraphicData>
          <texPath>Things/Pawn/Animal/Muffalo/MuffaloDessicated</texPath>
          <drawSize>3</drawSize>
        </dessicatedBodyGraphicData>
      </li>
    </lifeStages>
  </PawnKindDef>


My files are attached so you can see folder structure.

[attachment deleted by admin: too old]
#4
Video / Alpha 12 uncut vanilla Let's Play
December 08, 2015, 03:08:01 AM
I am making a Let's Play of Rimworld which will show all of my story. Please let me know what you think of it and ways that it can be improved.

Series Playlist: https://www.youtube.com/playlist?list=PLT2sW_LboKqBzTPClO18ymmortos3nTv7

Rimworld Alpha 12 Let's Play #1 - Cave digging

https://www.youtube.com/watch?v=ju7AWAtBEas
I start a new series in Rimworld Alpha twelve with a cute yorkshire terrier. In this episode I choose my location and survivors build the start of my base and get some power up and running.
#5
Video / Alpha 11 Let's Play
September 05, 2015, 09:13:18 PM
I have started a series on vanilla alpha 11 in temperate forest, so far many bad things are happening.
I will be posting new episodes 1-2 times a week, so please come and check the series out.

Series Playlist: https://www.youtube.com/playlist?list=PLT2sW_LboKqAILqUSfhHihJgcmd9SWQZg

Episode 1: https://www.youtube.com/watch?v=LllfyvoQBGc
I start my colony in Rimworld and start mining out a mountain for my base.

Thanks for taking the time to look at this post.