mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 12:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
79
data/HeartGold & SoulSilver/HeartGold SoulSilver/10.ts
Normal file
79
data/HeartGold & SoulSilver/HeartGold SoulSilver/10.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../HeartGold SoulSilver'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Raichu",
|
||||
fr: "Raichu",
|
||||
},
|
||||
illustrator: "match",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
26,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Iron Tail",
|
||||
fr: "Queue de fer",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez une pièce jusqu’à ce qu’elle tombe sur pile. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Lightning",
|
||||
],
|
||||
name: {
|
||||
en: "Thunderbolt",
|
||||
fr: "Tonnerre",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard all Energy attached to Raichu.",
|
||||
fr: "Défaussez-vous de toutes les cartes Énergie attachées à Raichu.",
|
||||
},
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user