1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/bw/bw3/64.ts Normal file
View File

@ -0,0 +1,104 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "bw3-64",
localId: 64,
// Card informations
name: {
en: "Conkeldurr",
fr: "Bétochef",
},
hp: 140,
type: [
Type.FIGHTING,
],
dexId: 534,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw3/64/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/64/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw3/64/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/64/high.png",
},
},
evolveFrom: {
en: "Gurdurr",
fr: "Ouvrifier",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 27,
name: "kawayoo"
},
abilities: [{
id: 798,
type: AbilityType.TALENT,
name: {
en: "Craftsmanship",
fr: "Maître d'Œuvre",
},
text: {
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: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Top Down",
fr: "Écras'Montagne",
},
text: {
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: Type.PSYCHIC,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Noble Victories",
code: "bw3"
}
}
export default card