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

73 lines
2.9 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "イダイナキバ",
id: "Great Tusk",
th: "งายักษ์",
'zh-tw': "雄偉牙",
'zh-cn': "雄偉牙"
},
illustrator: "GIDORA",
rarity: "None",
category: "Pokemon",
dexId: [984],
hp: 140,
types: ["Fighting"],
description: {
ja: "近年 目撃例が ある。 イダイナキバという 名は ある本に 記された 生物から 取られた。",
id: "Terdapat laporan kesaksian atas Pokémon ini dalam beberapa tahun terakhir. Nama Great Tusk diambil dari nama makhluk hidup yang tercantum dalam suatu buku.",
th: "มีผู้พบเห็นเมื่อไม่กี่ปีที่ผ่านมานี้ ชื่องายักษ์นั้นได้มาจากชื่อของสิ่งมีชีวิตที่ระบุไว้ในหนังสือเล่มหนึ่ง",
'zh-tw': "近年曾經有人目擊到牠。 雄偉牙這個名字來自於 某本書裡記載的生物。",
'zh-cn': "近年曾經有人目擊到牠。 雄偉牙這個名字來自於 某本書裡記載的生物。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "じばんほうかい",
id: "Fondasi Runtuh",
th: "พสุธาทลาย",
'zh-tw': "地盤崩壞",
'zh-cn': "地盤崩壞"
},
effect: {
ja: "相手の山札を上から1枚トラッシュする。この番、手札から「古代」のサポートを出して使っていたなら、さらに3枚トラッシュする。",
id: "Buang 1 kartu dari atas Deck lawan ke Trash. Jika pada giliran ini, Supporter Purba telah dimainkan dari Kartu Pegangan, buang lagi 3 kartu tambahan ke Trash.",
th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด เทิร์นนี้ ถ้านำการ์ดซัพพอร์ต [โบราณ] จากบนมือออกมาใช้แล้ว จะทิ้งการ์ดเพิ่มได้ 3 ใบที่ตำแหน่งทิ้งการ์ด",
'zh-tw': "將對手的牌庫上方1張卡丟棄。在這個回合若從手牌使出了「古代」支援者卡則再丟棄3張。",
'zh-cn': "將對手的牌庫上方1張卡丟棄。在這個回合若從手牌使出了「古代」支援者卡則再丟棄3張。"
}
}, {
cost: ["Fighting", "Fighting", "Colorless", "Colorless"],
name: {
ja: "きょだいなキバ",
id: "Taring Raksasa",
th: "เขี้ยวมหึมา",
'zh-tw': "巨大之牙",
'zh-cn': "巨大之牙"
},
damage: 160
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card