mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
68
data/Black & White/Legendary Treasures/RC11.ts
Normal file
68
data/Black & White/Legendary Treasures/RC11.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Legendary Treasures'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Meloetta-EX",
|
||||
},
|
||||
illustrator: "Eske Yoshinob",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
648,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Brilliant Voice",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Round",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage times the number of your Pokémon that have the Round attack.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user