1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02: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

View File

@ -0,0 +1,93 @@
import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Raichu & Alolan Raichu-GX",
fr: "Raichu et Raichu dAlola-GX",
},
illustrator: "tetsuya koizumi",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 260,
types: [
"Lightning",
],
suffix: "TAG TEAM-GX",
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Tandem Shock",
fr: "Règle des ESCOUADES",
},
effect: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 80 more damage, and your opponent's Active Pokémon is now Paralyzed.",
},
damage: 80,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Lightning Ride-GX",
fr: "Choc en Tandem",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. If this Pokémon has at least 2 extra Lightning Energy attached to it (in addition to this attack's cost), this attack does 100 more damage. (You can't use more than 1 GX attack in a game.)",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 80 dégâts supplémentaires et le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 150,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
fr: "Tour dÉclair-GX",
},
effect: {
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc. Si au moins 2 Énergies Lightning supplémentaires sont attachées à ce Pokémon (en plus du coût de cette attaque), cette attaque inflige 100 dégâts supplémentaires. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: "150+",
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card