2022-10-13 13:53:26 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Programmation_objet_TLESIO21.projet {
|
|
|
|
|
public class PokemonFire : Pokemon {
|
|
|
|
|
public PokemonFire(string Name, int PV, int ATKPhys, int ATKSpe, int DEFPhys, int DEFSpe, int Speed) : base(Name, PV, ATKPhys, ATKSpe, DEFPhys, DEFSpe, Speed) {
|
|
|
|
|
base.setPC(100);
|
|
|
|
|
this.setType(Type.FIRE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void PhysAttack(Pokemon cible) {
|
2022-10-16 11:14:06 +02:00
|
|
|
|
this.setPC(this.getPC() - 2);
|
|
|
|
|
int damage = this.getATKPhys() - cible.getDEFPhys();
|
|
|
|
|
if (damage > 0) {
|
2022-10-13 13:53:26 +02:00
|
|
|
|
if(cible.getType().Equals(Type.DRAGON) ||
|
|
|
|
|
cible.getType().Equals(Type.WATER) ||
|
|
|
|
|
cible.getType().Equals(Type.FIRE) ||
|
|
|
|
|
cible.getType().Equals(Type.ROCK)) {
|
|
|
|
|
damage /= 2;
|
2022-10-15 18:39:27 +02:00
|
|
|
|
Console.WriteLine("Ce n'est pas très efficace");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
2022-10-15 18:39:27 +02:00
|
|
|
|
if (cible.getType().Equals(Type.GRASS) ||
|
2022-10-13 13:53:26 +02:00
|
|
|
|
cible.getType().Equals(Type.BUG) ||
|
|
|
|
|
cible.getType().Equals(Type.ICE) ||
|
|
|
|
|
cible.getType().Equals(Type.STEEL)) {
|
|
|
|
|
damage *= 2;
|
2022-10-15 18:39:27 +02:00
|
|
|
|
Console.WriteLine("C'est super efficace");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
|
|
|
|
cible.getDamage(damage);
|
2022-10-15 18:39:27 +02:00
|
|
|
|
} else {
|
|
|
|
|
Console.WriteLine("L'attaque n'a eu aucun effet");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void SpeAttack(Pokemon cible) {
|
|
|
|
|
this.setPC(this.getPC() - 2);
|
2022-10-16 11:16:53 +02:00
|
|
|
|
int damage = this.getATKSpe() - cible.getDEFSpe();
|
|
|
|
|
if (damage > 0) {
|
2022-10-13 13:53:26 +02:00
|
|
|
|
if(cible.getType().Equals(Type.DRAGON) ||
|
|
|
|
|
cible.getType().Equals(Type.WATER) ||
|
|
|
|
|
cible.getType().Equals(Type.FIRE) ||
|
|
|
|
|
cible.getType().Equals(Type.ROCK)) {
|
|
|
|
|
damage /= 2;
|
2022-10-15 18:39:27 +02:00
|
|
|
|
Console.WriteLine("Ce n'est pas très efficace");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
2022-10-15 18:39:27 +02:00
|
|
|
|
if (cible.getType().Equals(Type.GRASS) ||
|
2022-10-13 13:53:26 +02:00
|
|
|
|
cible.getType().Equals(Type.BUG) ||
|
|
|
|
|
cible.getType().Equals(Type.ICE) ||
|
|
|
|
|
cible.getType().Equals(Type.STEEL)) {
|
|
|
|
|
damage *= 2;
|
2022-10-15 18:39:27 +02:00
|
|
|
|
Console.WriteLine("C'est super efficace");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
|
|
|
|
cible.getDamage(damage);
|
2022-10-15 18:39:27 +02:00
|
|
|
|
} else {
|
|
|
|
|
Console.WriteLine("L'attaque n'a eu aucun effet");
|
2022-10-13 13:53:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|