1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21: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 "../White Flare"
const card: Card = {
set: Set,
name: {
en: "Victini",
fr: "Victini",
de: "Victini",
it: "Victini",
pt: "Victini",
es: "Victini",
'es-mx': "Victini"
},
rarity: "Black White Rare",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Fire"],
name: {
en: "V-Force",
fr: "Force-V",
de: "V-Stärke",
it: "Forza V",
pt: "Força V",
es: "Fuerza V",
'es-mx': "Fuerza V"
},
effect: {
en: "If you have 4 or fewer Benched Pokémon, this attack does nothing.",
fr: "Si vous avez 4 Pokémon de Banc ou moins, cette attaque ne fait rien.",
de: "Wenn du 4 oder weniger Pokémon auf deiner Bank hast, hat diese Attacke keine Auswirkungen.",
it: "Se hai quattro o meno Pokémon in panchina, questo attacco non ha effetto.",
pt: "Se você tiver 4 ou menos Pokémon no Banco, este ataque não fará nada.",
es: "Si tienes 4 Pokémon en Banca o menos, este ataque no hace nada.",
'es-mx': "Si tienes 4 Pokémon en Banca o menos, este ataque no hace nada."
},
damage: 120
}],
retreat: 1,
regulationMark: "I"
}
export default card