1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

34 lines
434 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Skiddo"
},
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Surprise Attack"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing."
},
damage: "40"
}],
retreat: 1,
rarity: "None"
}
export default card