1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../Black Bolt"
const card: Card = {
set: Set,
name: {
en: "Tympole",
fr: "Tritonde",
de: "Schallquap",
it: "Tympole",
pt: "Tympole",
es: "Tympole",
'es-mx': "Tympole"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Round",
fr: "Chant Canon",
de: "Kanon",
it: "Coro",
pt: "Circular",
es: "Canon",
'es-mx': "Canon"
},
effect: {
en: "This attack does 20 damage for each of your Pokémon in play that has the Round attack.",
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon en jeu ayant l'attaque Chant Canon.",
de: "Diese Attacke fügt für jedes deiner Pokémon im Spiel, das die Attacke Kanon hat, 20 Schadenspunkte zu.",
it: "Questo attacco infligge 20 danni per ogni tuo Pokémon in gioco che ha l'attacco Coro.",
pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon em jogo que tiver o ataque Circular.",
es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon en juego que tenga el ataque Canon.",
'es-mx': "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon en juego que tenga el ataque Canon."
},
damage: "20×"
}],
retreat: 1,
regulationMark: "I"
}
export default card