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

56 lines
992 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 "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "岩狗狗",
ja: "イワンコ"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
'zh-tw': "非常容易親近,但是卻喜歡東咬西咬,所以如果要一直培育牠的話會相當費勁。",
ja: "よく 懐くが 噛み癖が あるので ずっと 育てるには なかなか 骨が 折れるぞ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雙重抽出",
ja: "ダブルドロー"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。",
ja: "自分の山札を2枚引く。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "後踢",
ja: "うしろげり"
},
damage: 30,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [744]
}
export default card