mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
92
cards/ex/ex3/19.ts
Normal file
92
cards/ex/ex3/19.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "ex3-19",
|
||||
localId: 19,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Salamence",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 373,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex3/19/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex3/19/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Shelgon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 111,
|
||||
type: AbilityType.POKEBODY,
|
||||
name: {
|
||||
en: "Intimidating Fang",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Salamence is your Active Pokémon, any damage done to your Pokémon by an opponent's attack is reduced by 10 (before applying Weakness and Resistance).",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dragon Flame",
|
||||
},
|
||||
text: {
|
||||
en: "You may discard an Energy card attached to Salamence. If you do, this attack does 40 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Dragon",
|
||||
code: "ex3"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user