1
0
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:
2023-12-06 00:47:28 +01:00
committed by GitHub
parent a7011c519d
commit b24233b342
4320 changed files with 32071 additions and 14148 deletions

View File

@ -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