Exemple #1
0
        //could be a one-liner. written this way because maybe people wanna change it, idk.
        private bool TonguePiercingUnlocked(TonguePiercingLocation piercingLocation, out string whyNot)
        {
            if (piercings.piercingFetish)
            {
                whyNot = null;
                return(true);
            }
            //allow one tongue piercing. must have fetish for more than that.
            else if (piercings.piercingCount > 0 && !piercings.isPiercedAt(piercingLocation))
            {
                whyNot = OnlyOneTonguePiercingWithoutFetish();
                return(false);
            }

            else
            {
                whyNot = null;
                return(true);
            }
        }
Exemple #2
0
 public static PiercingJewelry GenerateTongueJewelry(this Tongue tongue, TonguePiercingLocation location, JewelryMaterial jewelryMaterial)
 {
     return(new GenericPiercing(JewelryType.BARBELL_STUD, jewelryMaterial));
 }