mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
90 lines
1.4 KiB
TypeScript
90 lines
1.4 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "ex11-12",
|
||
localId: 12,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Mewtwo δ",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 150,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex11/12/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex11/12/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Ryo Ueda",
|
||
|
||
abilities: [{
|
||
id: 155,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Delta Switch",
|
||
},
|
||
text: {
|
||
en: "Once during your turn, when you put Mewtwo from your hand onto your Bench, you may move any number of basic Energy cards attached to your Pokémon to your other Pokémon (excluding Mewtwo) in any way you like.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.METAL
|
||
],
|
||
name: {
|
||
en: "Energy Burst",
|
||
},
|
||
text: {
|
||
en: "Does 10 damage times the total amount of Energy attached to Mewtwo and the Defending Pokémon.",
|
||
},
|
||
damage: 10
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Delta Species",
|
||
code: "ex11"
|
||
}
|
||
}
|
||
|
||
export default card
|