1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

82 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../SWSH Black Star Promos'
const card: Card = {
set: Set,
illustrator: "AKIRA EGAWA",
category: "Pokemon",
stage: "V-UNION",
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Mewtwo V-UNION"
},
rarity: "None",
hp: 310,
types: ["Psychic"],
abilities: [{
type: "Ability",
name: {
en: "Photon Barrier"
},
effect: {
en: "Prevent all effects of attacks from your opponent's Pokémon done to this Pokémon. (Damage is not an effect.)"
}
}],
attacks: [{
cost: ["Colorless"],
name: {
en: "Union Gain"
},
effect: {
en: "Attach up to 2 Psychic Energy cards from your discard pile to this Pokémon."
}
}, {
cost: ["Psychic", "Psychic", "Colorless"],
name: {
en: "Super Regeneration"
},
effect: {
en: "Heal 200 damage from this Pokémon."
}
}, {
cost: ["Psychic", "Psychic", "Colorless"],
name: {
en: "Psysplosion"
},
effect: {
en: "Put 16 damage counters on your opponent's Pokémon in any way you like."
}
}, {
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
name: {
en: "Final Burn"
},
damage: 300
}],
regulationMark: "E",
suffix: "V"
}
export default card