1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

57
data/Base/Fossil/29.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Raichu",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Gigashock",
},
effect: {
en: "Choose 3 of your opponent's Benched Pokémon and this attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.) If your opponent has fewer than 3 Benched Pokémon, do the damage to each of them.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card