1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Yanmega",
fr: "Yanmega",
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
469,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Yanma",
fr: "Yanma",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Sonic Wave",
fr: "Vague sonique",
},
effect: {
en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.) Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
},
damage: 10,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Pursue and Turn",
fr: "Chasser et tourner",
},
effect: {
en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 60 damage plus 20 more damage and switch Yanmega with 1 of your Benched Pokémon.",
fr: "Si le Pokémon Défenseur possède au moins 2 marqueurs de dégât, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires. Échangez Yanmega avec 1 des Pokémon de votre Banc.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card