1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Trainer kits/EX trainer Kit (Latios)/5.ts
2021-10-18 11:53:03 +02:00

35 lines
487 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latios)'
const card: Card = {
set: Set,
name: {
en: "Magneton"
},
illustrator: "Kyoko Umemoto",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
attacks: [{
name: {
en: "Ram"
},
damage: 20
}, {
name: {
en: "Triple Smash"
},
damage: "20+",
effect: {
en: "Flip 3 coins. This attack does 20 damage plus 20 more damage for each heads."
}
}]
}
export default card