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

92 lines
1.4 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-4",
localId: 4,
// Card informations
name: {
en: "Azelf",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 482,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/4/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/4/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 510,
type: AbilityType.POKEBODY,
name: {
en: "Downer Material",
},
text: {
en: "If you have Uxie and Mesprit in play, the attack cost of each of your opponent's Basic Pokémon's attack is Colorless more. You can't use more than 1 Downer Material Poké-Body each turn.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Bind Pulse",
},
text: {
en: "During your opponent's next turn, your opponent can't attach any Special Energy cards from his or her hand to any of his or her Pokémon.",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card