1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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,75 @@
import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Gallade",
fr: "Gallame",
},
illustrator: "Daisuke Ito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
475,
],
hp: 130,
types: [
"Fightning",
],
evolveFrom: {
en: "Kirlia",
fr: "Kirlia",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Sonic Blade",
fr: "Lame sonique",
},
effect: {
en: "Put damage counters on the Defending Pokémon until it is 50 HP away from being Knocked Out. If you do, your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Placez des marqueurs de dégât sur le Pokémon Défenseur jusqu'à ce qu'il soit à 50 PV d'être mis K.O. Votre adversaire échange alors le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psychic Cut",
fr: "Coupe Psycho",
},
effect: {
en: "You may choose as many of your face-down Prize cards as you like and put them face up. If you do, this attack does 60 damage plus 20 more damage for each Prize card you chose. (These cards remain face up for the rest of the game.)",
fr: "Vous pouvez choisir autant de cartes Récompense se trouvant face cachée que vous le voulez et les retourner. Cette attaque inflige alors 60 dégâts plus 20 dégâts supplémentaires pour chaque carte Récompense choisie. (Ces cartes restent retournées pour le reste de la partie).",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "+30"
},
],
retreat: 2,
}
export default card