예제 #1
0
        public override void Punch(IPunchable other)
        {
            double damage = Motivation / 1.5;

            if (Motivation >= 1)
            {
                other.BePunched(damage);
            }
        }