1
0
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:
2024-08-25 02:44:42 +02:00
committed by GitHub
parent 80f483ab66
commit cfd6d5c0e8
101 changed files with 5742 additions and 1 deletions

View 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