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

59 lines
1.3 KiB
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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ジグザグマ",
'zh-tw': "蛇紋熊",
th: "จิกุซากุมะ"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
dexId: [263],
hp: 70,
types: ["Colorless"],
description: {
ja: "好奇心 旺盛な ポケモン。 なににでも 興味を 持つので いつも ジグザグに 歩いている。",
'zh-tw': "好奇心旺盛的寶可夢。不論對什麼都很感興趣,所以總是呈鋸齒形行走。",
th: "โปเกมอนที่เต็มเปี่ยมไปด้วยความอยากรู้อยากเห็น เพราะสนใจไปหมดทุกอย่าง ก็เลยเดินซิกแซ็กไปมาเสมอ"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "とびだしヘッド",
'zh-tw': "魯莽頭擊",
th: "กระโดดโหม่ง"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ツメできりさく",
'zh-tw': "利爪劈擊",
th: "กรงเล็บฉีกร่าง"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card