1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

79
data/EX/Emerald/96.ts Normal file
View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Emerald'
const card: Card = {
name: {
en: "Milotic ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
350,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
},
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Mystic Scale",
},
effect: {
en: "As long as Milotic ex is in play, each player can't play any Technical Machine cards from his or her hand. Discard all Technical Machine cards in play (both yours and your opponent's).",
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Gentle Wrap",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Reflect Energy",
},
effect: {
en: "Move 1 basic Energy card attached to Milotic ex to 1 of your Benched Pokémon.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card