62 lines
2.3 KiB
C#
62 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Programmation_objet_TLESIO21.projet {
|
|
public class PokemonGhost : Pokemon {
|
|
|
|
public PokemonGhost(string Name, int PV, int ATKPhys, int ATKSpe, int DEFPhys, int DEFSpe, int Speed) : base(Name, PV, ATKPhys, ATKSpe, DEFPhys, DEFSpe, Speed) {
|
|
base.setPC(80);
|
|
this.setType(Type.GHOST);
|
|
}
|
|
|
|
public override void PhysAttack(Pokemon cible) {
|
|
this.setPC(this.getPC() - 3);
|
|
int damage = this.getATKPhys() - cible.getDEFPhys();
|
|
if (cible.getType().Equals(Type.NORMAL)) {
|
|
damage = 0;
|
|
Console.WriteLine("Ca n'affecte pas le " + cible.getName() + "ennemi");
|
|
}
|
|
if (damage > 0) {
|
|
if(cible.getType().Equals(Type.DARK)) {
|
|
damage /= 2;
|
|
Console.WriteLine("Ce n'est pas très efficace");
|
|
}
|
|
if (cible.getType().Equals(Type.PSYCHIC) ||
|
|
cible.getType().Equals(Type.GHOST)) {
|
|
damage *= 2;
|
|
Console.WriteLine("C'est super efficace");
|
|
}
|
|
cible.getDamage(damage);
|
|
} else {
|
|
Console.WriteLine("L'attaque n'a eu aucun effet");
|
|
}
|
|
}
|
|
|
|
public override void SpeAttack(Pokemon cible) {
|
|
this.setPC(this.getPC() - 1);
|
|
int damage = this.getATKSpe() - cible.getDEFSpe();
|
|
if (cible.getType().Equals(Type.NORMAL)) {
|
|
damage = 0;
|
|
Console.WriteLine("Ca n'affecte pas le " + cible.getName() + "ennemi");
|
|
}
|
|
if (damage > 0) {
|
|
if (cible.getType().Equals(Type.DARK)) {
|
|
damage /= 2;
|
|
Console.WriteLine("Ce n'est pas très efficace");
|
|
}
|
|
if (cible.getType().Equals(Type.PSYCHIC) ||
|
|
cible.getType().Equals(Type.GHOST)) {
|
|
damage *= 2;
|
|
Console.WriteLine("C'est super efficace");
|
|
}
|
|
cible.getDamage(damage);
|
|
} else {
|
|
Console.WriteLine("L'attaque n'a eu aucun effet");
|
|
}
|
|
}
|
|
}
|
|
}
|