1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +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

92 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Carbink",
fr: "Strassie",
es: "Carbink",
it: "Carbink",
pt: "Carbink",
de: "Rocara"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
703,
],
hp: 90,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Wonder Ray",
fr: "Rayon Miracle",
es: "Rayo Prodigioso",
it: "Raggio Meraviglia",
pt: "Raio Encantado",
de: "Wunderstrahl"
},
effect: {
en: "During your opponents next turn, prevent all effects of attacks, including damage, done to this Pokémon by any Pokémon that has an Ability.",
fr: "Pendant le prochain tour de votre adversaire, évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon par des Pokémon ayant un talent.",
es: "Durante el próximo turno de tu rival, evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon por cualquier Pokémon que tenga una habilidad.",
it: "Durante il prossimo turno del tuo avversario, previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon da qualsiasi Pokémon che abbia unabilità.",
pt: "Durante a próxima vez de jogar do seu oponente, prevenirá todos os efeitos de ataques, incluindo dano, causados a este Pokémon por qualquer Pokémon que tiver uma Habilidade.",
de: "Verhindere alle Effekte von Attacken, einschließlich Schaden, die diesem Pokémon während des nächsten Zuges deines Gegners durch Pokémon, die eine Fähigkeit haben, zugefügt werden."
},
damage: 30,
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Power Gem",
fr: "Rayon Gemme",
es: "Joya de Luz",
it: "Gemmoforza",
pt: "Gema Poderosa",
de: "Juwelenkraft"
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card