1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s

This commit is contained in:
2023-11-12 14:56:22 +01:00
committed by GitHub
parent e0e3a1a4fd
commit 3c93a3534c
988 changed files with 56362 additions and 22 deletions

View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
set: Set,
name: {
fr: "Kabuto",
en: "Kabuto",
es: "Kabuto",
it: "Kabuto",
pt: "Kabuto",
de: "Kabuto"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Colorless"],
name: {
fr: "Double Écorchure",
en: "Double Scratch",
es: "Arañazo Doble",
it: "Doppio Graffio",
pt: "Arranhão Duplo",
de: "Doppelkratzer"
},
effect: {
fr: "Lancez 2 pièces. Cette attaque inflige 70 dégâts pour chaque côté face.",
en: "Flip 2 coins. This attack does 70 damage for each heads.",
es: "Lanza 2 monedas. Este ataque hace 70 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 70 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 70 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 70 Schadenspunkte pro Kopf zu."
},
damage: "70×"
}],
retreat: 2,
regulationMark: "G"
}
export default card