mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
90 lines
1.4 KiB
TypeScript
90 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: "col1-SL1",
|
||
localId: "SL1",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Deoxys",
|
||
fr: "Deoxys",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 386,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/col/col1/SL1/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/col/col1/SL1/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/col/col1/SL1/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/col/col1/SL1/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 63,
|
||
name: "Noriko Hotta"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC
|
||
],
|
||
name: {
|
||
en: "Cell Storm",
|
||
fr: "Tempête cellulaire",
|
||
},
|
||
text: {
|
||
en: "Discard 2 Psychic Energy attached to Deoxys and remove 6 damage counters from Deoxys.",
|
||
fr: "Défaussez 2 Énergies Psychic attachées à Deoxys et retirez-lui 6 marqueurs de dégâts.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Call of Legends",
|
||
code: "col1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|