Esempio n. 1
0
 public TheCast()
 {
     the_relationships = new Dictionary<PatricianPair, Relationships>();
     the_patricians = new List<Patricians>();
     the_player = new Player();
     the_tribes = new List<Tribes>();
     the_opposition = new List<Opposition>();
 }
Esempio n. 2
0
 public static bool StreetSmartCheck(Player player)
 {
     return (player.street_smarts > new Random().Next(0, 10));
 }
Esempio n. 3
0
 public static bool ObservationRoll(Player player)
 {
     return (player.observation > new Random().Next(0, 10));
 }
Esempio n. 4
0
 public MainCharacter(Player Player)
 {
     InitializeComponent();
     textBox1.Text = ViewedText.newCharacter_exSlave();
     player = Player;
 }