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:
54
data/Scarlet & Violet/151/050.ts
Normal file
54
data/Scarlet & Violet/151/050.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Taupiqueur",
|
||||
en: "Diglett",
|
||||
es: "Diglett",
|
||||
it: "Diglett",
|
||||
pt: "Diglett",
|
||||
de: "Digda"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Culbute Surprise",
|
||||
en: "Headbutt Bounce",
|
||||
es: "Bote Cabezazo",
|
||||
it: "Rimbalzo Bottintesta",
|
||||
pt: "Cabeçada Ricochete",
|
||||
de: "Abrupter Kopfstoß"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Coud'Boue",
|
||||
en: "Mud-Slap",
|
||||
es: "Bofetón Lodo",
|
||||
it: "Fangosberla",
|
||||
pt: "Tapa de Lama",
|
||||
de: "Lehmschelle"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user