mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
91 lines
1.4 KiB
TypeScript
91 lines
1.4 KiB
TypeScript
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: "bw11-106",
|
|
localId: 106,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Druddigon",
|
|
},
|
|
|
|
hp: 100,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 621,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/bw/bw11/106/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/bw/bw11/106/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 28,
|
|
name: "match"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 227,
|
|
type: AbilityType.TALENT,
|
|
name: {
|
|
en: "Rough Skin",
|
|
},
|
|
text: {
|
|
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Clutch",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
|
},
|
|
damage: 60
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Legendary Treasures",
|
|
code: "bw11"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|