mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +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:
41
data/Scarlet & Violet/Scarlet & Violet/091.ts
Normal file
41
data/Scarlet & Violet/Scarlet & Violet/091.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Scarlet & Violet"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Flabébé",
|
||||
fr: "Flabébé",
|
||||
es: "Flabébé",
|
||||
it: "Flabébé",
|
||||
pt: "Flabébé",
|
||||
de: "Flabébé"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Pollen Shot",
|
||||
fr: "Tir Pollen",
|
||||
es: "Lanzamiento de Polen",
|
||||
it: "Colpo Pollinare",
|
||||
pt: "Arremesso de Pólen",
|
||||
de: "Pollenschuss"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user