Example #1
0
 private static string AnemoneTransformStr(GillData previousGillData, PlayerBase player)
 {
     if (previousGillData.type != GillType.NONE)
     {
         return(GlobalStrings.NewParagraph() + "You feel your gills tighten, the slits seeming to close all at once. As you let out a choked gasp your gills shrink into nothingness, " +
                "leaving only smooth skin behind. When you think it's over you feel something emerge from under your neck, flowing down over your chest and brushing your nipples. " +
                "You look in surprise as your new feathery gills finish growing out, a film of mucus forming over them shortly after." + GlobalStrings.NewParagraph() +
                SafelyFormattedString.FormattedText("You now have feathery gills!", StringFormats.BOLD));
     }
     else
     {             // if no gills
         return(GlobalStrings.NewParagraph() + "You feel a pressure in your lower esophageal region and pull your garments down to check the area. Before your eyes " +
                "a pair of feathery gills start to push out of the center of your chest, just below your neckline, parting sideways and draping over your " +
                player.breasts[0].LongNippleDescription() + ". They feel a bit uncomfortable in the open air at first, but soon a thin film of mucus covers them and you" +
                " hardly notice anything at all. You redress carefully." + GlobalStrings.NewParagraph() + SafelyFormattedString.FormattedText("You now have feathery gills!", StringFormats.BOLD));
     }
 }
Example #2
0
 private static string FishTransformStr(GillData previousGillData, PlayerBase player)
 {
     if (previousGillData.type != GillType.NONE)
     {
         return(GlobalStrings.NewParagraph() + "You feel your gills tingle, a vague numbness registering across their feathery exterior. You watch in awe as your gill's " +
                "feathery folds dry out and fall off like crisp autumn leaves. The slits of your gills then rearrange themselves, becoming thinner and shorter, as they " +
                "shift to the sides of your neck. They now close in a way that makes them almost invisible. As you run a finger over your neck you feel more than a few small, " +
                "raised lines where they meet your skin." + GlobalStrings.NewParagraph() + SafelyFormattedString.FormattedText("You now have fish like gills!", StringFormats.BOLD));
     }
     else
     {             // if no gills
         return(GlobalStrings.NewParagraph() + "You feel a sudden tingle on your neck. You reach up to it to feel, what's the source of it. When you touch your neck, " +
                "you feel that it begins to grow several narrow slits which slowly grow longer. After the changes have stopped you quickly head to a nearby puddle" +
                " to take a closer look at your neck. You realize that your neck has grown gills allowing you to breathe under water as if you were standing on land." +
                GlobalStrings.NewParagraph() + SafelyFormattedString.FormattedText("You now have fish like gills!", StringFormats.BOLD));
     }
 }
Example #3
0
 private static string AnemoneRestoreStr(GillData previousGillData, PlayerBase player)
 {
     return(GlobalStrings.NewParagraph() + "Your chest itches, and as you reach up to scratch it, you realize your gills have withdrawn into your skin. " +
            SafelyFormattedString.FormattedText("You no longer have gills!", StringFormats.BOLD));
 }
Example #4
0
 private static string AnemoneLongDesc(GillData gills, bool alternateFormat)
 {
     return((alternateFormat ? "a pair of " : "") + "feathery anemone gills");
 }
Example #5
0
 private static string NoneRestoreStr(GillData originalData, PlayerBase player)
 {
     return(GlobalStrings.RevertAsDefault(originalData, player));
 }
Example #6
0
 private static string NoneTransformStr(GillData oldData, PlayerBase player)
 {
     return(oldData.type.RestoredString(oldData, player));
 }
Example #7
0
 private static string NoneLongDesc(GillData arg, bool alternateFormat)
 {
     return("");
 }
Example #8
0
 private static string FishRestoreStr(GillData previousGillData, PlayerBase player)
 {
     return(GlobalStrings.NewParagraph() + "You feel your gills tighten, the slits seeming to close all at once. As you let out a choked gasp your" +
            " gills shrink into nothingness, leaving only smooth skin behind. Seems you won't be able to stay in the water quite so long anymore. " +
            SafelyFormattedString.FormattedText("You no longer have gills!", StringFormats.BOLD));
 }
Example #9
0
 private static string FishLongDesc(GillData gills, bool alternateFormat)
 {
     return((alternateFormat ? "a pair of " : "") + "large, fish-like gills");
 }