mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add Triumphant Light set (#670)
This commit is contained in:
51
data/Pokémon TCG Pocket/Triumphant Light/084.ts
Normal file
51
data/Pokémon TCG Pocket/Triumphant Light/084.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Triumphant Light"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Garchomp ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gabite"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Linear Attack"
|
||||
},
|
||||
|
||||
cost: ["Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 50 damage to 1 of your opponent's Pokémon."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Dragon Claw"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user