mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 12:41:59 +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/048.ts
Normal file
54
data/Scarlet & Violet/151/048.ts
Normal file
@@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Mimitoss",
|
||||
en: "Venonat",
|
||||
es: "Venonat",
|
||||
it: "Venonat",
|
||||
pt: "Venonat",
|
||||
de: "Bluzuk"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Ronge",
|
||||
en: "Gnaw",
|
||||
es: "Roer",
|
||||
it: "Rosicchiamento",
|
||||
pt: "Roída",
|
||||
de: "Nagen"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Rayon",
|
||||
en: "Beam",
|
||||
es: "Transmisión",
|
||||
it: "Raggio",
|
||||
pt: "Feixe",
|
||||
de: "Strahl"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user