1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 lines
1.5 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ウミトリオ",
'zh-tw': "三海地鼠",
id: "Wugtrio"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
dexId: [961],
hp: 90,
types: ["Water"],
description: {
ja: "見かけによらず 気性が 荒い。 長い 体で 獲物を 締め上げ 巣穴に 引きずりこむぞ。",
'zh-tw': "有別於外表,性格非常粗暴。會用長長的身體勒緊獵物, 然後拖進自己的巢穴裡。",
id: "Berbanding terbalik dengan penampilannya, sifat Wugtrio kasar. Dengan tubuh panjangnya, Pokémon ini melilit dan menarik mangsa ke dalam sarangnya."
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "ずつき",
'zh-tw': "頭錘",
id: "Tandukan Kepala"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "うみほりトンネル",
'zh-tw': "掘海隧道",
id: "Terowongan Galian Laut"
},
effect: {
ja: "コインを3回投げ、オモテの数×3枚ぶん、相手の山札を上からトラッシュする。",
'zh-tw': "擲3次硬幣將對手的牌庫上方與正面出現的次數×3張相同數量的卡丟棄。",
id: "Lempar koin 3 kali. Buang sejumlah 3 kartu dari atas Deck lawan ke Trash untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card