1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

74 lines
1.2 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 '../Noble Victories'
const card: Card = {
name: {
en: "Conkeldurr",
fr: "Bétochef",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
534,
],
hp: 140,
types: [
"Fighting",
],
evolveFrom: {
en: "Gurdurr",
fr: "Ouvrifier",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Craftsmanship",
fr: "Maître d'Œuvre",
},
effect: {
en: "This Pokémon gets +20 HP for each Fighting Energy attached to it.",
fr: "Chaque Énergie Fighting attachée à ce Pokémon lui ajoute 20 PV.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Top Down",
fr: "Écras'Montagne",
},
effect: {
en: "Flip a coin until you get tails. For each heads, discard the top card of your opponent's deck.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez la carte du dessus du deck de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 4,
}
export default card