1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2fc22cc4a5
Added Best of games (#108)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:59:30 +02:00

49 lines
902 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Rockets Mewtwo"
},
illustrator: "Shin-ichi Yoshida",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Juxtapose"
},
effect: {
en: "Flip a coin. If heads, switch the number of damage counters on Rockets Mewtwo with the number of damage counters on the Defending Pokémon (even if it would Knock Out either Pokémon). (Its okay if 1 of the Pokémon has no damage counters on it.)"
}
}, {
cost: ["Psychic", "Psychic"],
name: {
en: "Hypnoblast"
},
damage: 20,
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep."
}
}, {
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
name: {
en: "Psyburn"
},
damage: 60
}]
}
export default card