mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
74 lines
945 B
TypeScript
74 lines
945 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cherubi",
|
|
fr: "Ceribou",
|
|
de: "Kikugi"
|
|
},
|
|
illustrator: "Saya Tsuruta",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
420,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Growth",
|
|
fr: "Croissance",
|
|
de: "Wachstum"
|
|
},
|
|
effect: {
|
|
en: "Attach a Grass Energy card from your hand to Cherubi.",
|
|
fr: "Attachez une carte Énergie Grass de votre main à Ceribou.",
|
|
de: "Lege 1 -Energiekarte von deiner Hand an Kikugi an."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
],
|
|
name: {
|
|
en: "Razor Leaf",
|
|
fr: "Tranch'herbe",
|
|
de: "Rasierblatt"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Water",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|