1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 04:46:14 +00:00
Octopixell 08971af0bf
fix: Add holo variants for sv03-013 and sv03-014 (#690)
* fix: Add holo variant for sv03-013

* fix: Add holo variant for sv03-014
2025-03-26 14:56:46 +01:00

45 lines
608 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Obsidian Flames"
const card: Card = {
dexId: [722],
set: Set,
name: {
fr: "Brindibou",
en: "Rowlet",
es: "Rowlet",
it: "Rowlet",
pt: "Rowlet",
de: "Bauz"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
fr: "Aile Tranchante",
en: "Razor Wing",
es: "Ala Cortante",
it: "Ala Tagliente",
pt: "Asa Cortante",
de: "Rasierflügel"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
variants: {
}
}
export default card