1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +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

78 lines
1.8 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Conkeldurr",
fr: "Bétochef",
es: "Conkeldurr",
it: "Conkeldurr",
pt: "Conkeldurr",
de: "Meistagrif"
},
illustrator: "Miki Tanaka",
rarity: "Rare",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
evolveFrom: {
en: "Gurdurr",
fr: "Ouvrifier"
},
attacks: [{
name: {
en: "Hammer Pressure",
fr: "Pression Martelante",
es: "Presión Martillo",
it: "Pressione Martellante",
pt: "Pressão Marteladora",
de: "Hammerdruck"
},
effect: {
en: "If the Defending Pokémon is an Evolution Pokémon, it cant attack during your opponents next turn.",
fr: "Si le Pokémon Défenseur est un Pokémon Évolutif, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
es: "Si el Pokémon Defensor es un Pokémon Evolución, no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Evoluzione.",
pt: "Se o Pokémon Defensor for um Pokémon de Evolução, ele não poderá atacar durante o próximo turno do seu oponente.",
de: "Wenn das Verteidigende Pokémon ein Entwicklungs-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 90,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
en: "Mega Punch",
fr: "Ultimapoing",
es: "Megapuño",
it: "Megapugno",
pt: "Megassoco",
de: "Megahieb"
},
damage: 150,
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card