1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

73
data/XY/Evolutions/35.ts Normal file
View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gnaw",
fr: "Ronge",
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thunder Jolt",
fr: "Secousse Tonnerre",
},
effect: {
en: "Flip a coin. If tails, this Pokémon does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 10 dégâts.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card