コード例 #1
0
        private string GroPlusBalls(BallsData oldData, bool nothingHappened)
        {
            StringBuilder sb = new StringBuilder();

            sb.Append("You sink the needle deep into your " + oldData.SackDescription() + ". It hurts like hell, but you push down the plunger " +
                      "and the pain vanishes as the needles contents flow into you." + GlobalStrings.NewParagraph());

            if (size - oldData.size > 2)
            {
                sb.Append("You feel a trembling in your " + oldData.ShortDescription() + " as the chemicals start to go to work. " +
                          "You can tell they're going to be VERY effective." + Environment.NewLine);

                sb.Append("They shift, stretching your " + oldData.SackDescription() + " tight as they gain inches of size. " +
                          "You step to steady yourself as your center of balance shifts due to your newly enlarged " + ShortDescription() + ".");
            }
            else
            {
                sb.Append("You feel your testicles shift, pulling the skin of your " + oldData.SackDescription() + " a little bit as they grow to "
                          + ShortDescription() + ".");
            }
            if (size > 10)
            {
                sb.Append(" Walking gets even tougher with the swollen masses between your legs. Maybe this was a bad idea.");
            }

            return(sb.ToString());
        }
コード例 #2
0
        private string ReductoBalls(BallsData oldData, bool nothingHappened)
        {
            return("You smear the foul-smelling paste onto your " + oldData.SackDescription() +
                   ". It feels cool at first but rapidly warms to an uncomfortable level of heat." + GlobalStrings.NewParagraph()

                   + "You feel your scrotum shift, shrinking down along with your " + ShortDescription() +
                   ". Within a few seconds the paste has been totally absorbed and the shrinking stops.");
        }