mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
52 lines
693 B
TypeScript
52 lines
693 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Applin",
|
||
fr: "Verpom",
|
||
es: "Applin",
|
||
it: "Applin",
|
||
pt: "Applin",
|
||
de: "Knapfel"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 40,
|
||
types: ["Grass"],
|
||
stage: "Basic",
|
||
illustrator: "Miki Tanaka",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Rollout",
|
||
fr: "Roulade",
|
||
es: "Rodar",
|
||
it: "Rotolamento",
|
||
pt: "Rollout",
|
||
de: "Walzer"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |