1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

99
cards/col/col1/10.ts Normal file
View File

@ -0,0 +1,99 @@
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: "col1-10",
localId: 10,
// Card informations
name: {
en: "Houndoom",
},
hp: 90,
type: [
Type.DARKNESS,
],
dexId: 229,
image: {
low: {
en: "https://assets.tcgdex.net/en/col/col1/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/col/col1/10/high.png",
},
},
evolveFrom: {
en: "Houndour",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.DARKNESS
],
name: {
en: "Fire Counterattack",
},
text: {
en: "If your opponent has any Fighting Pokémon in play, this attack does 20 damage plus 60 more damage.",
},
damage: 20
},{
cost: [
Type.DARKNESS,
Type.DARKNESS
],
name: {
en: "Dark Roar",
},
text: {
en: "Your opponent discards a card from his or her hand.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Call of Legends",
code: "col1"
}
}
export default card