mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
697 B
TypeScript
48 lines
697 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
dexId: [191],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sunkern",
|
|
fr: "Tournegrin",
|
|
es: "Sunkern",
|
|
it: "Sunkern",
|
|
pt: "Sunkern",
|
|
de: "Sonnkern"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 40,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Seed Bomb",
|
|
fr: "Canon Graine",
|
|
es: "Bomba Germen",
|
|
it: "Semebomba",
|
|
pt: "Bomba de Sementes",
|
|
de: "Samenbomben"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |