mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
103
cards/bw/bw6/83.ts
Normal file
103
cards/bw/bw6/83.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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: "bw6-83",
|
||||
localId: 83,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Durant",
|
||||
fr: "Fermite",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 632,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/83/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/83/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw6/83/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw6/83/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Pull Out",
|
||||
fr: "Déracinement",
|
||||
},
|
||||
text: {
|
||||
en: "Put a card from your discard pile on top of your deck.",
|
||||
fr: "Mettez une carte de votre pile de défausse sur le dessus de votre deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Iron Head",
|
||||
fr: "Tête de Fer",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Dragons Exalted",
|
||||
code: "bw6"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user