1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

81 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
fr: "Pikachu et Zekrom-GX",
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 240,
types: [
"Lightning",
],
suffix: "TAG TEAM-GX",
attacks: [
{
name: {
fr: "Règle des ESCOUADES",
},
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
fr: "Attaque Absolue",
},
effect: {
fr: "Cherchez jusquà 3 cartes Énergie Lightning dans votre deck et attachez-les à lun de vos Pokémon. Mélangez ensuite votre deck.",
},
damage: 150,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
fr: "Escouade Foudroyante-GX",
},
effect: {
fr: "Si au moins 3 Énergies Lightning supplémentaires sont attachées à ce Pokémon (en plus du coût de cette attaque), cette attaque inflige 170 dégâts à lun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card