1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

70 lines
828 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Cherubi",
fr: "Ceribou",
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
420,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Growth",
fr: "Croissance",
},
effect: {
en: "Attach a Grass Energy card from your hand to Cherubi.",
fr: "Attachez une carte Énergie Grass de votre main à Ceribou.",
},
},
{
cost: [
"Grass",
],
name: {
en: "Razor Leaf",
fr: "Tranch'herbe",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card