1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

71 lines
953 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Cherrim",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
421,
],
types: [
"Grass",
],
evolveFrom: {
en: "Cherubi",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Cloudy Sky",
},
effect: {
en: "If any of your Grass Pokémon or Fire Pokémon would be damaged by an attack, reduce that damage by 10 (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Worry Seed",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card