1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
2025-05-04 00:37:30 +02:00

52 lines
558 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latios)'
const card: Card = {
dexId: [309],
set: Set,
name: {
en: "Electrike"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Lightning",
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Headbutt"
},
damage: 10
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
retreat: 1,
}
export default card