1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

71 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Salamence LV. X",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
373,
],
types: [
"Colorless",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Double Fall",
},
effect: {
en: "Once during your turn (before your attack), when you put Salamence LV.X from your hand onto your Active Salamence, you may use this power. For each of your opponent's Pokémon that is Knocked Out by damage from Salamence's attacks this turn, take 1 more Prize card.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Steam Blast",
},
effect: {
en: "Discard an Energy card attached to Salamence.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card