mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
69
data/Platinum/Supreme Victors/96.ts
Normal file
69
data/Platinum/Supreme Victors/96.ts
Normal file
@ -0,0 +1,69 @@
|
||||
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
|
Reference in New Issue
Block a user