mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-19 22:59:55 +00:00
41 lines
570 B
TypeScript
41 lines
570 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rufflet",
|
|
fr: "Furaiglon",
|
|
es: "Rufflet",
|
|
it: "Rufflet",
|
|
pt: "Rufflet",
|
|
de: "Geronimatz"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Flap",
|
|
fr: "Battement",
|
|
es: "Aleteo",
|
|
it: "Alabattito",
|
|
pt: "Asa",
|
|
de: "Flattern"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |