mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
106 lines
1.7 KiB
TypeScript
106 lines
1.7 KiB
TypeScript
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-65",
|
||
localId: 65,
|
||
|
||
// 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/65/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/65/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw3/65/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/65/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Gurdurr",
|
||
fr: "Ouvrifier",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIGHTING
|
||
],
|
||
name: {
|
||
en: "Chip Away",
|
||
fr: "Attrition",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by any effects on the Defending Pokémon.",
|
||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Défenseur.",
|
||
},
|
||
damage: 40
|
||
},{
|
||
cost: [
|
||
Type.FIGHTING,
|
||
Type.FIGHTING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Swing Around",
|
||
fr: "Balançoire",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. This attack does 30 more damage for each heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Noble Victories",
|
||
code: "bw3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|