1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
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: [
"Fightning",
],
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: [
"Fightning",
"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