mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
71 lines
913 B
TypeScript
71 lines
913 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Salamence",
|
||
fr: "Drattak",
|
||
},
|
||
illustrator: "Naoki Saito",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
373,
|
||
],
|
||
hp: 150,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
evolveFrom: {
|
||
en: "Shelgon",
|
||
fr: "Drackhaus",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Call for Goons",
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 3 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Dragon Pulse",
|
||
},
|
||
effect: {
|
||
en: "Discard the top card of your deck.",
|
||
},
|
||
damage: 130,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|