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

40 lines
592 B
TypeScript
Raw Permalink 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "小約克"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
'zh-tw': "比一般的小孩子都還要聰明。對於自己得到的關愛, 或是受到的傷害牠都不會忘記。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "後踢"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card