Пример #1
0
 private static string DemonPlayerStr(Horns horns, PlayerBase player)
 {
     if (horns.numHorns <= 2)
     {
         return(" A small pair of pointed horns has broken through the " + player.face.facialSkin.LongDescription() + " on your forehead, " +
                "proclaiming some demonic taint to any who see them.");
     }
     else if (horns.numHorns <= 4)
     {
         return(" A quartet of prominent horns has broken through your " + player.face.facialSkin.LongDescription() + ". The back pair are longer, " +
                "and curve back along your head. The front pair protrude forward demonically.");
     }
     else if (horns.numHorns <= 6)
     {
         return(" Six horns have sprouted through your " + player.face.facialSkin.LongDescription() + ", the back two pairs curve backwards over your head " +
                "and down towards your neck, while the front two horns stand almost " + Measurement.ToNearestSmallUnit(horns.significantHornSize, false, true) + " " +
                "long upwards and a little forward.");
     }
     else             //if (horns.numHorns >= 8)
     {
         return(" A large number of thick demonic horns sprout through your " + player.face.facialSkin.LongDescription() + ", each pair sprouting behind the ones before. " +
                "The front jut forwards nearly " + Measurement.ToNearestSmallUnit(horns.significantHornSize, false, true) + " while the rest curve back over your head, " +
                "some of the points ending just below your ears. You estimate you have a total of " + Utils.NumberAsText(horns.numHorns) + " horns.");
     }
 }
Пример #2
0
 private static string BullPlayerStr(Horns horns, PlayerBase player)
 {
     if (horns.significantHornSize < 3)
     {
         return(" Two tiny horn-like nubs protrude from your forehead, resembling the horns of the young livestock kept by your village.");
     }
     else if (horns.significantHornSize < 6)
     {
         return(" Two moderately sized horns grow from your forehead, similar in size to those on a young bovine.");
     }
     else if (horns.significantHornSize < 12)
     {
         return(" Two large horns sprout from your forehead, curving forwards like those of a bull.");
     }
     else if (horns.significantHornSize < 20)
     {
         return(" Two very large and dangerous looking horns sprout from your head, curving forward and over a foot long. They have dangerous looking points.");
     }
     else             //if (horns.significantHornSize >= 20)
     {
         return(" Two huge horns erupt from your forehead, curving outward at first, then forwards. The weight of them is heavy, and they end in dangerous looking points.");
     }
 }
Пример #3
0
 private static string NoHornsPlayerStr(Horns horns, PlayerBase player)
 {
     return("");
 }