mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
feat: Add missing German sets (#450)
This commit is contained in:
@ -4,25 +4,30 @@ 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",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -32,6 +37,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
de: "Sharp Fang"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
@ -45,20 +51,24 @@ const card: Card = {
|
||||
],
|
||||
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",
|
||||
@ -66,9 +76,16 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
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
|
||||
|
Reference in New Issue
Block a user