mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
49
data/E-Card/Best of game/8.ts
Normal file
49
data/E-Card/Best of game/8.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rocket’s 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 Rocket’s Mewtwo with the number of damage counters on the Defending Pokémon (even if it would Knock Out either Pokémon). (It’s 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
|
Reference in New Issue
Block a user