mirror of
https://gitgud.io/c0ffeeeeeeee/coffees-rjw-ideology-addons.git
synced 2024-08-14 23:57:38 +00:00
25 lines
488 B
C#
25 lines
488 B
C#
using Milk;
|
|
using RimWorld;
|
|
using rjw;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
|
|
namespace CRIALactation
|
|
{
|
|
public class RoleEffect_Hucow : RoleEffect
|
|
{
|
|
public override string Label(Pawn pawn, Precept_Role role)
|
|
{
|
|
return "Greatly increased milk yield, permenant lactation, slower speed";
|
|
}
|
|
|
|
public RoleEffect_Hucow()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|