mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
47 lines
621 B
TypeScript
47 lines
621 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Skwovet",
|
|
fr: "Rongourmand",
|
|
es: "Skwovet",
|
|
it: "Skwovet",
|
|
pt: "Skwovet",
|
|
de: "Raffel"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Gnaw",
|
|
fr: "Ronge",
|
|
es: "Roer",
|
|
it: "Rosicchiamento",
|
|
pt: "Roída",
|
|
de: "Nagen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |