1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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,93 @@
import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Ampharos-GX",
fr: "Pharamp-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
181,
],
hp: 240,
types: [
"Lightning",
],
evolveFrom: {
en: "Flaaffy",
fr: "Lainergie",
},
suffix: "GX",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Power Recharge",
fr: "Recharge Puissance",
},
effect: {
en: "Put all Electropower cards from your discard pile into your hand.",
fr: "Placez toutes les cartes Électropuissance de votre pile de défausse dans votre main.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Impact Bolt",
fr: "Frappe Éclair",
},
effect: {
en: "Discard all Lightning Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie Lightning de ce Pokémon.",
},
damage: 150,
},
{
cost: [
"Lightning",
],
name: {
en: "Electrical-GX",
fr: "Électricité-GX",
},
effect: {
en: "Search your deck for up to 7 Pokémon, reveal them, and put them into your hand. Then, shuffle your deck. (You can't use more than 1 GX attack in a game.)",
fr: "Cherchez jusquà 7 Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card