public Player1() { this.Hands.Remove(HandPosition.Left); foreach (Hand hand in this.Hands) { hand.Hold( new Sword() { Power = new D6() { Count = 1, Add = 3 }, Name = "刑天" } ); } this.HP = D6.Throw(2); this.Name = "独臂神爹"; }
public Player2() { foreach (Hand hand in this.Hands) { hand.Hold( new Sword() { Power = new D6() { Count = 1, Add = 0 }, Name = "鱼肠" } ); } this.HP = D6.Throw(2); this.Sex = Life.Sex.Female; this.Name = "双刀火鸡"; }