1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

68
data/Base/Jungle/2.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Jungle'
const card: Card = {
name: {
en: "Electrode",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Voltorb",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Chain Lightning",
},
effect: {
en: "If the Defending Pokémon isn't Colorless, this attack does 10 damage to each Benched Pokémon of the same type as the Defending Pokémon (including your own).",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card