mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
44
data/Pokémon TCG Pocket/Space-Time Smackdown/052.ts
Normal file
44
data/Pokémon TCG Pocket/Space-Time Smackdown/052.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magneton"
|
||||
},
|
||||
|
||||
illustrator: "Yumi",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magnemite"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Three Magnemite are linked by a strong magnetic<br />force. Earaches will occur if you get too close."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Lightning Ball"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user