mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
42 lines
643 B
TypeScript
42 lines
643 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヤルキモノ"
|
||
},
|
||
|
||
illustrator: "Kurata So",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [288],
|
||
hp: 90,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
ja: "いつも 暴れているので すぐに お腹が 空いてしまうが 食事の ときも じっとして いられない。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "スラッシュクロー"
|
||
},
|
||
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |