mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
93 lines
1.2 KiB
TypeScript
93 lines
1.2 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: "neo4-43",
|
|
localId: 43,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Houndour",
|
|
},
|
|
|
|
hp: 40,
|
|
|
|
type: [
|
|
Type.DARKNESS,
|
|
],
|
|
|
|
dexId: 228,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo4/43/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo4/43/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 22,
|
|
name: "Yukiko Baba"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.DARKNESS
|
|
],
|
|
name: {
|
|
en: "Corner",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Lunge",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-30"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Neo Destiny",
|
|
code: "neo4"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|