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.8 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Carbink",
fr: "Strassie",
es: "Carbink",
it: "Carbink",
pt: "Carbink",
de: "Rocara"
},
illustrator: "Sanosuke Sakuma",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
703,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Diamond Gate",
fr: "Portail Diamantin",
es: "Puerta de Diamantes",
it: "Portale di Diamanti",
pt: "Portão de Diamantes",
de: "Diamanttor"
},
effect: {
en: "Search your deck for a Supporter card and a Stadium card, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez une carte Supporter et une carte Stade dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Partidario y 1 carta de Estadio, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo una carta Aiuto e una carta Stadio, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por 1 carta de Apoiador e por 1 carta de Estádio no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach 1 Unterstützerkarte und 1 Stadionkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Guard Press",
fr: "Pression de Garde",
es: "Presión de Guardia",
it: "Pressadifesa",
pt: "Aperto Protetor",
de: "Schutzdruck"
},
effect: {
en: "During your opponents next turn, this Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, los ataques hacen 20 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 20 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Durante a próxima vez de jogar do seu oponente, este Pokémon receberá 20 pontos de dano a menos de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 20 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card