1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

92 lines
1.2 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Gyarados",
de: "Dunkles Garados"
},
illustrator: "Nakaoka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 80,
types: [
"Water",
"Darkness",
],
evolveFrom: {
en: "Magikarp",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Sharp Fang",
de: "Sharp Fang"
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Dark Streak",
de: "Dark Streak"
},
effect: {
en: "Flip a coin. If heads, each Defending Pokémon is now Paralyzed.",
de: "Flip a coin. If heads, each Defending Pokémon is now Paralyzed."
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
abilities: [{
type: 'Poke-BODY',
name: {
de: "Dark Scale"
},
effect: {
de: "If Dark Gyarados is your Active Pokémon and is Knocked Out by an opponent's attack, put 3 damage counters on the Attacking Pokémon."
}
}]
}
export default card