Beispiel #1
0
 public static void Main()
 {
     Prepositions.PrepositionsTextB();
     Verbs.VerbsTextB();
     Numbers.PrettyNumbers();
     Vocabulary.VocabularyList();
 }
        protected PropositionEnum ProcessPreposition(string word, ParserStatesEnum nextState)
        {
            var preposition = Prepositions.GetPreposition(word);

            if (preposition != PropositionEnum.NotRecognised)
            {
                _parserStates = nextState;
                return(preposition);
            }

            return(PropositionEnum.NotRecognised);
        }
Beispiel #3
0
        public void Cum(Prepositions preposition, Person target)
        {
            string pronoun = this.GetPossessivePronoun();
            string capPronoun = StringUtilities.CaptializeWords(pronoun);

            if ((double)this.Stats.GetValue("EjaculationsToday") < this.Stats.GetValue<double>("Stamina") / 25.0)
            {
                if ((double)this.Stats.GetValue("CumVolume") <= 0)
                {
                    Game.Instance.Output("Not even a drop of cum is left to escape " + pronoun + " c**k.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") < 0.5)
                {
                    Game.Instance.Output("A dribble of cum escapes from the tip of " + pronoun + " c**k.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") <= 1)
                {
                    Game.Instance.Output("A few weak spurts of cum leak from the tip of " + pronoun + " c**k.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") <= 5)
                {
                    Game.Instance.Output("A few strong jets of cum erupt from " + pronoun + " c**k.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") <= 10)
                {
                    Game.Instance.Output(capPronoun + " body tenses as several large jets of thick cum fire from " + pronoun + " c**k.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") <= 20)
                {
                    Game.Instance.Output(capPronoun + " c**k throbs hard as it keeps ejecting numerous thick ropes of cum.");
                }
                else if ((double)this.Stats.GetValue("CumVolume") <= 50)
                {
                    Game.Instance.Output(capPronoun + " aching c**k sends hot streams of cum flying for what feels like ages.");
                }
                else
                {
                    Game.Instance.Output(capPronoun + " c**k erupts over and over, sending a torrent of hot cum from " + pronoun + " throbing shaft.");
                }

                this.Stats.SetValue("CumVolume", Math.Floor((double)this.Stats.GetValue("CumVolume") / 2));
                this.Stats.SetValue("EjaculationsToday", (double)this.Stats.GetValue("EjaculationsToday") + 1);
            }
        }
 public static bool IsPreposition(this string input)
 {
     return(Prepositions.Contains(input));
 }