1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

99 lines
1.6 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: "dp2-10",
localId: 10,
// Card informations
name: {
en: "Honchkrow",
},
hp: 90,
type: [
Type.DARKNESS,
],
dexId: 430,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/10/high.png",
},
},
evolveFrom: {
en: "Murkrow",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
abilities: [{
id: 518,
type: AbilityType.POKEBODY,
name: {
en: "Dark Genes",
},
text: {
en: "As long as Honchkrow has the Energy necessary to use its attack, each of your Murkrow can use Honchkrow's attack as its own without the necessary Energy to use that attack.",
}
}],
attacks: [{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Dark Wing Flaps",
},
text: {
en: "Choose 1 card from your opponent's hand without looking. Look at the card you chose, then have your opponent shuffle that card into his or her deck.",
},
damage: 50
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card