1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

79 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Cherrim",
fr: "Ceriflor",
es: "Cherrim",
it: "Cherrim",
pt: "Cherrim",
de: "Kinoso"
},
illustrator: "Mina Nakai",
rarity: "Rare",
category: "Pokemon",
hp: 80,
types: ["Grass"],
evolveFrom: {
en: "Cherubi",
fr: "Ceribou"
},
abilities: [{
type: "Ability",
name: {
en: "Spring Bloom",
fr: "Floraison Vernale",
es: "Floración Primaveral",
it: "Fioritura Primaverile",
pt: "Florescer Primaveril",
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 doesnt have a Rule Box (Pokémon V, Pokémon-GX, etc. have Rule Boxes).",
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Grass de votre main à lun de vos Pokémon nayant pas dencadré Règle(les Pokémon-V, Pokémon-GX, etc. ont des encadrés Règle).",
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: "Quantas vezes desejar durante o seu turno, você poderá ligar 1 carta de Energia Grass da sua mão a 1 dos seus Pokémon que não tenha uma Caixa de Regras (Pokémon V, Pokémon-GX, etc. têm Caixas de Regras).",
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)."
}
}],
attacks: [{
name: {
en: "Seed Bomb",
fr: "Canon Graine",
es: "Bomba Germen",
it: "Semebomba",
pt: "Bomba de Sementes",
de: "Samenbomben"
},
damage: 70,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card