mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
103
cards/bw/bw10/55.ts
Normal file
103
cards/bw/bw10/55.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: "bw10-55",
|
||||
localId: 55,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Houndour",
|
||||
fr: "Malosse",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 228,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw10/55/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw10/55/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw10/55/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw10/55/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 7,
|
||||
name: "Sumiyoshi Kizuki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Roar",
|
||||
fr: "Hurlement",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
||||
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Ambush",
|
||||
fr: "Embuscade",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Plasma Blast",
|
||||
code: "bw10"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user