mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
94 lines
1.4 KiB
TypeScript
94 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: "ex16-8",
|
||
localId: 8,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Delcatty",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 301,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex16/8/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex16/8/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Skitty",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 8,
|
||
name: "Masakazu Fukuda"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 223,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Energy Draw",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), you may discard 1 Energy card from your hand. Then draw up to 3 cards from your deck. This power can't be used if Delcatty is affected by a Special Condition.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Max Energy Source",
|
||
},
|
||
text: {
|
||
en: "Does 10 damage times the amount of Energy attached to all of your Active Pokémon.",
|
||
},
|
||
damage: 10
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Power Keepers",
|
||
code: "ex16"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|