1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

86 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Cherrim",
fr: "Ceriflor",
es: "Cherrim",
it: "Cherrim",
pt: "Cherrim",
de: "Kinoso"
},
illustrator: "Tika Matsuno",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Grass"],
evolveFrom: {
en: "Cherubi",
fr: "Ceribou"
},
abilities: [{
type: "Ability",
name: {
en: "Spring Bloom",
es: "Floración Primaveral",
it: "Fioritura Primaverile",
pt: "Spring Bloom",
de: "Frühlingsblühen"
},
effect: {
en: "As often as you like during your turn, you may attach a Grass Energy card from your hand to 1 of your Pokémon that doesn't have a Rule Box (Pokémon V, Pokémon-GX, etc. have Rule Boxes).",
es: "Todas las veces que quieras durante tu turno, puedes unir 1 carta de Energía Grass de tu mano a 1 de tus Pokémon que no tenga un recuadro de regla (Pokémon V, Pokémon-GX, etc. tienen recuadros de regla).",
it: "Durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon che non ha una regola speciale una carta Energia Grass dalla tua mano tutte le volte che vuoi. I Pokémon-V, i Pokémon-GX, ecc. hanno regole speciali.",
pt: "As often as you like during your turn, you may attach a Grass Energy card from your hand to 1 of your Pokémon that doesn't have a Rule Box (Pokémon V, Pokémon-GX, etc. have Rule Boxes).",
de: "Beliebig oft während deines Zuges kannst du 1 Grass-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen, das kein Regelfeld hat (Pokémon-V, Pokémon-GX usw. haben Regelfelder)."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
description: {
en: "The faint scent that emanates from its full blossom entices bug Pokémon to it."
},
stage: "Stage1",
dexId: [421],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
attacks: [{
name: {
en: "Seed Bomb",
fr: "Canon Graine",
es: "Bomba Germen",
it: "Semebomba",
pt: "Seed Bomb",
de: "Samenbomben"
},
damage: 70,
cost: ["Grass", "Colorless", "Colorless"]
}],
regulationMark: "E"
}
export default card