mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
95 lines
1.6 KiB
TypeScript
95 lines
1.6 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: "ex13-43",
|
||
localId: 43,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Golduck δ",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 55,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/43/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex13/43/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Psyduck",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 2,
|
||
name: "Midori Harada"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 1094,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Delta Block",
|
||
},
|
||
text: {
|
||
en: "As long as any Stadium card with Holon in its name is in play, your opponent can't play any Stadium cards from his or her hand.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Mind Play",
|
||
},
|
||
text: {
|
||
en: "Choose 1 card from your opponent's hand without looking. Look at the card you chose. If that card is a Trainer card, this attack does 30 damage plus 30 more damage, and discard that card. If that card is not a Trainer card, return it to your opponent's hand.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Holon Phantoms",
|
||
code: "ex13"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|