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

58 lines
1.0 KiB
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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "土狼犬",
ja: "ポチエナ"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
'zh-tw': "有著敏銳的嗅覺, 絕對不會放過自己盯上的獵物。 個性非常執著。",
ja: "鋭い きゅうかくで ねらった 獲物は 絶対に 逃がさない。 とっても しつこい 性格だ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬",
ja: "かじる"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "撞一下",
ja: "ちょっとつっこむ"
},
effect: {
'zh-tw': "這隻寶可夢也受到10點傷害。",
ja: "このポケモンにも10ダメージ。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [261]
}
export default card