mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
44 lines
668 B
TypeScript
44 lines
668 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Wisdom of Sea and Sky"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cherrim"
|
|
},
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Cherubi"
|
|
},
|
|
|
|
description: {
|
|
en: "After absorbing plenty of sunlight, Cherrim takes\nthis form. It's full of energy while it's like this,\nand its liveliness will go on until sundown."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Seed Bomb"
|
|
},
|
|
|
|
damage: 40,
|
|
cost: ["Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |