Exemple #1
0
 public Cult(string ln, WorshipMethod wmu, int s)
 {
     leaderName        = ln;
     worshipMethodUsed = wmu;
     size  = s;
     faith = 100.0f;
 }
Exemple #2
0
 public Deity(string gName, WorshipMethod wm, int wam)
 {
     GodName = gName;
     preferredWorshipMethod = wm;
     worshipAmtRequired     = wam;
     satisfaction           = 60;
     worshippingCults       = new List <Cult>();
 }