1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

82 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Gyarados δ",
},
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",
},
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).",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Hyper Beam",
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
},
damage: 20,
},
{
cost: [
"Lightning",
"Metal",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Impact",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card