mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add shrouded fable cards (#525)
This commit is contained in:
61
data/Scarlet & Violet/Shrouded Fable/003.ts
Normal file
61
data/Scarlet & Violet/Shrouded Fable/003.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shrouded Fable"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rowlet",
|
||||
fr: "Brindibou",
|
||||
es: "Rowlet",
|
||||
it: "Rowlet",
|
||||
pt: "Rowlet",
|
||||
de: "Bauz"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Add On",
|
||||
fr: "Ajout",
|
||||
es: "Sumar",
|
||||
it: "Supplemento",
|
||||
pt: "Adicionar",
|
||||
de: "Hinzufügen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Leafage",
|
||||
fr: "Feuillage",
|
||||
es: "Follaje",
|
||||
it: "Fogliame",
|
||||
pt: "Folhagem",
|
||||
de: "Blattwerk"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user