1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

84 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 6'
const card: Card = {
name: {
en: "Cherubi",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
420,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sleep Powder",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leech Seed",
},
effect: {
en: "If this attack does any damage to the Defending Pokémon (after applying Weakness and Resistance), remove 1 damage counter from Cherubi.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
description: {
en: "The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card