1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
2025-05-04 00:37:30 +02:00

63 lines
829 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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",
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Skitty",
},
attacks: [{
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Scratch"
},
damage: 30
}, {
cost: [
"Colorless",
"Colorless",
"Colorless"
],
name: {
en: "Ultra Energy Source"
},
effect: {
en: "Does 10 damage times the number of basic Energy cards attached to all of the Active Pokémon (both yours and your opponents)."
},
damage: "10×"
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
retreat: 1,
}
export default card