mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
92 lines
1.4 KiB
TypeScript
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: "ex12-86",
|
|
localId: 86,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Dustox ex",
|
|
},
|
|
|
|
hp: 140,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 269,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex12/86/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex12/86/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Cascoon",
|
|
},
|
|
|
|
tags: [
|
|
Tag.EX,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 9,
|
|
name: "Mitsuhiro Arita"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 148,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Safeguard",
|
|
},
|
|
text: {
|
|
en: "Prevent all effects of attacks, including damage, done to Dustox ex by your opponent's Pokémon-ex.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Silver Wind",
|
|
},
|
|
text: {
|
|
en: "During your next turn, if an attack does damage to the Defending Pokémon (after applying Weakness and Resistance), that attack does 30 more damage.",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareHoloEX,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Legend Maker",
|
|
code: "ex12"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|