mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added current set informations Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed incorrect set ID * Updated Chilling Reign current cards Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated informations for Chilling Reign Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added new Entries Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
68 lines
1.2 KiB
TypeScript
68 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galarian Zapdos V",
|
||
fr: "Électhor de Galar V"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 200,
|
||
dexId: [145],
|
||
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: 'Basic',
|
||
suffix: 'V',
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Fighting Instinct",
|
||
fr: "Instinct de Combat"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon attack cost Colorless less for each of your opponent's Active Pokémon V in play.",
|
||
fr: "Les attaques de ce Pokémon coûtent Incolore de moins pour chaque Pokémon-V en jeu de votre adversaire."
|
||
}
|
||
}],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless"
|
||
],
|
||
name: {
|
||
en: "Thunderous Kick",
|
||
fr: "Coup Fulgurant"
|
||
},
|
||
effect: {
|
||
en: "Before doing damage, discard a Special Energy from your opponent's Active Pokémon.",
|
||
fr: "Avant d'infliger des dégâts, défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 170
|
||
}
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|