1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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,81 @@
import { Card } from '../../../interfaces'
import Set from '../Power Keepers'
const card: Card = {
name: {
en: "Salamence ex",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
373,
],
hp: 160,
types: [
"Colorless",
],
evolveFrom: {
en: "Shelgon",
},
suffix: "EX",
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Volcanic Flame",
},
effect: {
en: "Discard the top 5 cards from your deck.",
},
damage: 150,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Wave",
},
effect: {
en: "Discard all Water Energy attached to Salamence ex. This attack does 30 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fire",
value: "-30"
},
{
type: "Fightning",
value: "-30"
},
],
}
export default card