1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09: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,84 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Lucario & Melmetal-GX",
},
illustrator: "nagimiso",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 260,
types: [
"Metal",
],
suffix: "TAG TEAM-GX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Steel Fist",
},
effect: {
en: "Search your deck for a Metal Energy card and attach it to this Pokémon. Then, shuffle your deck.",
},
damage: 50,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Impact",
},
damage: 150,
},
{
cost: [
"Colorless",
],
name: {
en: "Full Metal Wall-GX",
},
effect: {
en: "For the rest of this game, your Metal Pokémon take 30 less damage from your opponent's attacks (after applying Weakness and Resistance). If this Pokémon has at least 1 extra Energy attached to it (in addition to this attack's cost), discard all Energy from your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card