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

57 lines
661 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latias)'
const card: Card = {
dexId: [300],
set: Set,
name: {
en: "Skitty"
},
illustrator: "Atsuko Nishida",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Colorless",
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Tackle"
},
damage: 10
}, {
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Lunge"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing."
},
damage: 30
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
retreat: 1,
}
export default card