Exemple #1
0
		public CharacterDataInst(CharacterDataInst other) {
			maxHp = other.maxHp;
			hp = other.hp;
			atk = other.atk;
			defLevel = other.defLevel;
			atkLevel = other.atkLevel;
			gold = other.gold;
			itemType = other.itemType;
			currentLifeTime = other.currentLifeTime;
			isDivineReaperUsed = other.isDivineReaperUsed;
			isStockUsed = other.isStockUsed;
		}
Exemple #2
0
		public BattleGenerator(CharacterDataInst charData, MonsterDataInst monData) {
			this.charData = new CharacterDataInst(charData);
			this.monData = new MonsterDataInst(monData);

			Begin();
		}