mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
94 lines
1.6 KiB
TypeScript
94 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: "ex13-3",
|
||
localId: 3,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Deoxys δ",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 386,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/3/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/3/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 9,
|
||
name: "Mitsuhiro Arita"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 43,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Form Change",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), you may search your deck for another Deoxys and switch it with Deoxys. (Any cards attached to Deoxys, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) If you do, put Deoxys on top of your deck. Shuffle your deck afterward. You can't use more than 1 Form Change Poké-Power each turn.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Energy Loop",
|
||
},
|
||
text: {
|
||
en: "Return 2 Energy attached to Deoxys to your hand.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Holon Phantoms",
|
||
code: "ex13"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|