mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Pop serie do not report any sets (#27)
* rename to another name * renamed * Renamed references
This commit is contained in:
63
data/POP/POP Series 5/3.ts
Normal file
63
data/POP/POP Series 5/3.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 5'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mew (Delta Species)",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
151,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Copy",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of the Defending Pokémon's attacks. Copy copies that attack. This attack does nothing if Mew doesn't have the Energy necessary to use that attack. (You must still do anything else required for that attack.) Mew performs that attack.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Extra Draw",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Pokémon-ex in play, search your deck for up to 2 basic Energy cards and attach them to Mew. Shuffle your deck afterward.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user