mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
106
cards/sm/smp/SM193.ts
Normal file
106
cards/sm/smp/SM193.ts
Normal file
@ -0,0 +1,106 @@
|
||||
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: "smp-SM193",
|
||||
localId: "SM193",
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Garchomp & Giratina-GX",
|
||||
},
|
||||
|
||||
hp: 270,
|
||||
|
||||
type: [
|
||||
Type.DRAGON,
|
||||
],
|
||||
|
||||
dexId: 445,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/smp/SM193/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/smp/SM193/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.TAGTEAM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 50,
|
||||
name: "Anesaki Dynamic"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Linear Attack",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Calamitous Slash",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 80 more damage.",
|
||||
},
|
||||
damage: 160
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "GG End-GX",
|
||||
},
|
||||
text: {
|
||||
en: "Discard 1 of your opponent's Pokémon and all cards attached to it. If this Pokémon has at least 3 extra Fighting Energy attached to it (in addition to this attack's cost), discard 2 of your opponent's Pokémon instead. (You can't use more than 1 GX attack in a game.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FAIRY,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "SM Black Star Promos",
|
||||
code: "smp"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user