1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 08:39:54 +00:00

68 lines
861 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Scrafty",
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Scraggy",
},
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Corner",
},
effect: {
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Bad Brawl",
},
effect: {
en: "If you played Piers from your hand during this turn, this attack does 90 more damage.",
},
damage: "90+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card