mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39: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:
63
data/Scarlet & Violet/151/075.ts
Normal file
63
data/Scarlet & Violet/151/075.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Gravalanch",
|
||||
en: "Graveler",
|
||||
es: "Graveler",
|
||||
it: "Graveler",
|
||||
pt: "Graveler",
|
||||
de: "Georok"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Canon à Pierres",
|
||||
en: "Rock Cannon",
|
||||
es: "Cañón Roca",
|
||||
it: "Rocciocannone",
|
||||
pt: "Canhão de Rochas",
|
||||
de: "Felskanone"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 40 dégâts pour chaque côté face.",
|
||||
en: "Flip a coin until you get tails. This attack does 40 damage for each heads.",
|
||||
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 40 puntos de daño por cada cara.",
|
||||
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 40 danni ogni volta che esce testa.",
|
||||
pt: "Jogue uma moeda até sair coroa. Este ataque causa 40 pontos de dano para cada cara.",
|
||||
de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 40 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "40×"
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Gros Impact",
|
||||
en: "Heavy Impact",
|
||||
es: "Impacto Pesado",
|
||||
it: "Impatto Pesante",
|
||||
pt: "Impacto Pesado",
|
||||
de: "Schwerer Einschlag"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user