//- Effect if Pushed public override void Effect() { if (Secound.GetRelationTo(First) >= 25) { First.AddRelation(Secound, 10); Secound.AddRelation(First, 10); First.JoinParty(Secound.Party); } else { MessageBox.Show("Beziehung zu niedrig."); } }
//- Effect if Pushed public override void Effect() { First.AddRelation(Secound, 25); Secound.AddRelation(First, 5); }