1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

94 lines
3.5 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 '../Unified Minds'
const card: Card = {
name: {
en: "Slaking",
fr: "Monaflèmit",
es: "Slaking",
it: "Slaking",
pt: "Slaking",
de: "Letarking"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
289,
],
hp: 180,
types: [
"Colorless",
],
evolveFrom: {
en: "Vigoroth",
fr: "Vigoroth",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Counterattack",
fr: "Contre-Attaque",
es: "Contragolpe",
it: "Respinta",
pt: "Contra-Atacante",
de: "Gegenangriff"
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponents attack (even if this Pokémon is Knocked Out), put 4 damage counters on the Attacking Pokémon.",
fr: "Si ce Pokémon est votre Pokémon Actif et quil subit les dégâts dune attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 2 marqueurs de dégâts sur le Pokémon Attaquant.",
es: "Si este Pokémon es tu Pokémon Activo y resulta dañado por un ataque de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 2 contadores de daño en el Pokémon Atacante.",
it: "Se questo Pokémon è il tuo Pokémon attivo e viene danneggiato da un attacco del tuo avversario, anche se viene messo KO, metti due segnalini danno sul Pokémon attaccante.",
pt: "Se este Pokémon for seu Pokémon Ativo e ele for danificado pelo ataque de um oponente (mesmo se esse Pokémon for Nocauteado), coloque 2 contadores de danos no Pokémon Atacante.",
de: "Wenn dieses Pokémon dein Aktives Pokémon ist und durch einen gegnerischen Angriff Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 2 Schadensmarken auf das Angreifende Pokémon."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dynamic Swing",
fr: "Retour Dynamique",
es: "Sacudida Dinámica",
it: "Dinamisberla",
pt: "Gancho Dinâmico",
de: "Dynamischer Schwinger"
},
effect: {
en: "You may do 100 more damage. If you do, during your opponents next turn, this Pokémon takes 100 more damage from attacks (after applying Weakness and Resistance).",
fr: "Vous pouvez infliger 100 dégâts supplémentaires. Dans ce cas, pendant le prochain tour de votre adversaire, ce Pokémon subit 100 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Puedes hacer 100 puntos de daño más. Si lo haces, durante el próximo turno de tu rival, los ataques hacen 100 puntos de daño más a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Puoi infliggere 100 danni in più. Se lo fai, durante il prossimo turno del tuo avversario, questo Pokémon subisce 100 danni in più dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Você pode causar 100 pontos de dano a mais. Se fizer isto, durante a próxima vez de jogar do seu oponente, este Pokémon receberá 100 pontos de dano a mais de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Du kannst 100 Schadenspunkte mehr zufügen. Wenn du das machst, werden diesem Pokémon während des nächsten Zuges deines Gegners durch Attacken 100 Schadenspunkte mehr zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: "100+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card