mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 20:49:54 +00:00
36 lines
566 B
TypeScript
36 lines
566 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../EX trainer Kit (Latias)'
|
||
|
||
const card: Card = {
|
||
dexId: [301],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Delcatty"
|
||
},
|
||
|
||
illustrator: "Midori Harada",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Scratch"
|
||
},
|
||
|
||
damage: 30
|
||
}, {
|
||
name: {
|
||
en: "Ultra Energy Source"
|
||
},
|
||
|
||
damage: "10×",
|
||
|
||
effect: {
|
||
en: "Does 10 damage times the number of basic Energy cards attached to all of the Active Pokémon (both yours and your opponent’s)."
|
||
}
|
||
}]
|
||
}
|
||
|
||
export default card |