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
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
50
data/Scarlet & Violet/151/140.ts
Normal file
50
data/Scarlet & Violet/151/140.ts
Normal 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
|
Reference in New Issue
Block a user