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:
65
data/Neo/Neo Genesis/65.ts
Normal file
65
data/Neo/Neo Genesis/65.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Neo Genesis'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mareep",
|
||||
},
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
179,
|
||||
],
|
||||
hp: 40,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
],
|
||||
name: {
|
||||
en: "Static Electricity",
|
||||
},
|
||||
effect: {
|
||||
en: "For each Mareep in play, you may search your deck for a Energy card and attach it to Mareep. Shuffle your deck afterward.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Lightning",
|
||||
],
|
||||
name: {
|
||||
en: "Thundershock",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user