mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
94 lines
2.0 KiB
TypeScript
94 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Holon Phantoms'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Gyarados δ",
|
||
fr: "Leviator δ",
|
||
de: "Garados"
|
||
},
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
130,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Lightning",
|
||
"Metal",
|
||
],
|
||
evolveFrom: {
|
||
en: "Magikarp",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Delta Reactor",
|
||
fr: "Réacteur Delta",
|
||
de: "Delta-Reaktor"
|
||
},
|
||
effect: {
|
||
en: "As long as any Stadium card with Holon in its name is in play, each of your Pokémon that has δ on its card does 10 more damage to the Defending Pokémon (before applying Weakness and Resistance).",
|
||
fr: "Tant que des cartes Stade dont le nom comporte Holon sont en jeu, chacun de vos Pokémon possédant le symbole δ inflige au Pokémon Défenseur 10 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
|
||
de: "Solange sich eine Stadion-Karte im Spiel befindet, die \"Holon\" im Namen hat, fügt jedes deiner Pokémon, auf dem δ zu sehen ist, dem Verteidigendem Pokémon 10 zusätzliche Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet wurden)."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hyper Beam",
|
||
fr: "Ultralaser",
|
||
de: "Hyperstrahl"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energiekarte von dem Verteidigendem Pokémon auf den Ablagestapel deines Gegners."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Heavy Impact",
|
||
fr: "Gros impact",
|
||
de: "Schwerer Einschlag"
|
||
},
|
||
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|