예제 #1
0
파일: BlowJobType.cs 프로젝트: NoGRo/SbBjT
 public BlowJobType()
 {
     Time= new Duration();
     Sucks = new Duration();
     Speed = new Duration();
     Punish =  new PunishMulti();
     Rest= new Rest();
 }
예제 #2
0
파일: BlowJob.cs 프로젝트: NoGRo/SbBjT
        public B*****b(Master master, Slave slave)
        {
            Punish = new PunishMulti();
            Master = master;
            History = new List<PartName>();
            BlowJobType = Master.Personality.BlowJobType;
            SucksLeft = BlowJobType.Sucks.Value;
            if (BlowJobType.Rest.Have)
                SucksLeftToRest = BlowJobType.Rest.SuckToRest.Value;

            if (BlowJobType.Behavior != null)
                BlowJobType.Behavior.B*****b = this;
            Punish = BlowJobType.Punish;
        }