1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

87 lines
1.5 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Chansey",
fr: "Leveinard",
es: "Chansey",
it: "Chansey",
pt: "Chansey",
de: "Chaneira"
},
illustrator: "Megumi Mizutani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
113,
],
hp: 110,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bind Wound",
fr: "Blessure Pansée",
es: "Vendar Herida",
it: "Cura Ferite",
pt: "Ligar Ferida",
de: "Wunden verbinden"
},
effect: {
en: "Flip a coin. If heads, heal 30 damage from 1 of your Pokémon.",
fr: "Lancez une pièce. Si cest face, soignez 30 dégâts à lun de vos Pokémon.",
es: "Lanza 1 moneda. Si sale cara, cura 30 puntos de daño a 1 de tus Pokémon.",
it: "Lancia una moneta. Se esce testa, cura uno dei tuoi Pokémon da 30 danni.",
pt: "Jogue 1 moeda. Se sair cara, cure 30 pontos de dano de 1 dos seus Pokémon.",
de: "Wirf 1 Münze. Heile bei Kopf 30 Schadenspunkte bei 1 deiner Pokémon."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncer",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card