1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04: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,73 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Blast'
const card: Card = {
name: {
en: "Salamence",
fr: "Drattak",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
373,
],
hp: 150,
types: [
"Dragon",
],
evolveFrom: {
en: "Shelgon",
fr: "Drackhaus",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Breakwing",
fr: "Aile Impitoyable",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may discard all Pokémon Tool cards attached to each of your opponent's Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez défausser toutes les cartes Outil Pokémon attachées à chacun des Pokémon de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Gaia Crush",
fr: "Anéantissement de Gaïa",
},
effect: {
en: "Discard any Stadium card in play.",
fr: "Défaussez toute carte Stade en jeu.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 4,
}
export default card