mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add Poké Card Creator Pack cards (#184)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
61
data/EX/Poké Card Creator Pack/5.ts
Normal file
61
data/EX/Poké Card Creator Pack/5.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Poké Card Creator Pack'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu"
|
||||
},
|
||||
illustrator: "Sylvia Forrest",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Thundershock"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Hypno Splash"
|
||||
},
|
||||
effect: {
|
||||
en: "Discard all Lightning Energy cards attached to Pikachu or this attack does nothing."
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
}
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting"
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user