Ludeon Forums
- January 23, 2021, 02:52:56 AM
- Welcome, Guest
![]() |
For science, I just used replace all trade ships to call in 26 exotic goods traders and none had one plus called in exotic traders from outlands and came up empty (no mods). This falls in line with my previous experiences: in my last run to go to space I was calling in exotic goods traders to buy gold basically every time it was available and over 237 days of of play I never saw an AI core on an exotic goods trader. Obviously not trying to questioning you, but there really might be some sort of bug with that in A18 or the odds of seeing one are really low.
<li>
<label>right hoof</label>
<capacities>
<li>Blunt</li>
<li>Poke</li>
</capacities>
<power>6</power>
<cooldownTime>1.65</cooldownTime>
<linkedBodyPartsGroup>FrontLeftLeg</linkedBodyPartsGroup>
</li>
> Be cautious to plan your work priorities accordingly.
> Note that now harvesting wood on tree can fail.
> I highly recommend mixing it with XeoNovaDan's "Plant cutting is for growers" which shows the relevant skills. - Mehni
public class RoomStatWorker_Impressiveness : RoomStatWorker
{
//
// Methods
//
private float GetFactor (float baseFactor)
{
if (Mathf.Abs (baseFactor) < 1f) {
return baseFactor;
}
if (baseFactor > 0f) {
return 1f + Mathf.Log (baseFactor);
}
return -1f - Mathf.Log (-baseFactor);
}
public override float GetScore (Room room)
{
float factor = this.GetFactor (room.GetStat (RoomStatDefOf.Wealth) / 3500f);
float factor2 = this.GetFactor (room.GetStat (RoomStatDefOf.Beauty) / 6f);
float factor3 = this.GetFactor (room.GetStat (RoomStatDefOf.Space) / 125f);
float factor4 = this.GetFactor (1f + room.GetStat (RoomStatDefOf.Cleanliness) / 2.5f);
float num = Mathf.Min (factor, Mathf.Min (factor2, Mathf.Min (factor3, factor4)));
float num2 = (factor + factor2 + factor3 + factor4) / 4f;
num2 = (num2 + num) / 2f;
return num2 * 100f;
}
}
Wealth | Beauty | Space | Cleanliness |
40 | 0 | 70 | 0 |
Master-assigned pets now behave like any other tamed animals. They stay in their restricted area if assigned to. They no longer follow their master AT ALL. If the master is drafted they seems to stay in the Home Area.