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:
57
data/EX/Emerald/47.ts
Normal file
57
data/EX/Emerald/47.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Emerald'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Electrike",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
309,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Double Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user