Пример #1
0
 public void InitializeForNewGame(string playerName)
 {
     Name = playerName;
     CockType = CockType.Dog;
     Gold = 10000;//1000000;
     PlayerStats.InitializeForNewGame();
 }
Пример #2
0
 public CockCreator(CockType cockType, double?cockLength = null, double?cockGirth = null, double?knotMultiplier = null, CockSockBase cockSock = null,
                    Dictionary <CockPiercingLocation, PiercingJewelry> cockJewelry = null)
 {
     type          = cockType;
     length        = cockLength;
     girth         = cockGirth;
     knot          = knotMultiplier;
     this.cockSock = cockSock;
     piercings     = cockJewelry == null ? null : new ReadOnlyDictionary <CockPiercingLocation, PiercingJewelry>(cockJewelry);
 }