52 lines
1.8 KiB
C#
52 lines
1.8 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 PokemonFlying : Pokemon {
|
|
|
|
public PokemonFlying(string Name, int PV, int ATKPhys, int ATKSpe, int DEFPhys, int DEFSpe, int Speed) : base(Name, PV, ATKPhys, ATKSpe, DEFPhys, DEFSpe, Speed) {
|
|
base.setPC(120);
|
|
this.setType(Type.FLYING);
|
|
}
|
|
|
|
public override void PhysAttack(Pokemon cible) {
|
|
this.setPC(this.getPC() - 4);
|
|
int damage = cible.getDEFPhys() - this.getATKPhys();
|
|
if(damage > 0) {
|
|
if(cible.getType().Equals(Type.ROCK) ||
|
|
cible.getType().Equals(Type.STEEL) ||
|
|
cible.getType().Equals(Type.ELECTRIC)) {
|
|
damage /= 2;
|
|
}
|
|
if(cible.getType().Equals(Type.FIGHTING) ||
|
|
cible.getType().Equals(Type.BUG) ||
|
|
cible.getType().Equals(Type.GRASS)) {
|
|
damage *= 2;
|
|
}
|
|
cible.getDamage(damage);
|
|
}
|
|
}
|
|
|
|
public override void SpeAttack(Pokemon cible) {
|
|
this.setPC(this.getPC() - 2);
|
|
int damage = cible.getDEFSpe() - this.getATKSpe();
|
|
if(damage > 0) {
|
|
if (cible.getType().Equals(Type.ROCK) ||
|
|
cible.getType().Equals(Type.STEEL) ||
|
|
cible.getType().Equals(Type.ELECTRIC)) {
|
|
damage /= 2;
|
|
}
|
|
if (cible.getType().Equals(Type.FIGHTING) ||
|
|
cible.getType().Equals(Type.BUG) ||
|
|
cible.getType().Equals(Type.GRASS)) {
|
|
damage *= 2;
|
|
}
|
|
cible.getDamage(damage);
|
|
}
|
|
}
|
|
}
|
|
}
|