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

69 lines
2.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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "イダイナキバex",
'zh-tw': "雄偉牙ex",
th: "งายักษ์ex",
id: "Great Tusk ex"
},
illustrator: "kawayoo",
rarity: "Double rare",
category: "Pokemon",
hp: 250,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ゆさぶりくずす",
'zh-tw': "搖碎",
th: "เขย่าให้ทลาย",
id: "Mengguncang Meruntuhkan"
},
effect: {
ja: "自分の番の終わりに、このポケモンがバトル場にいるなら、必ず1回使う。自分の山札を上から5枚トラッシュする。",
'zh-tw': "在自己的回合結束時若這隻寶可夢在戰鬥場上則一定要使用1次。將自己的牌庫上方5張卡丟棄。",
th: "เมื่อจบเทิร์นฝ่ายเรา ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ต้องใช้ 1 ครั้ง ทิ้งการ์ด 5 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด",
id: "Harus digunakan 1 kali pada akhir giliran sendiri jika Pokémon ini ada di Arena Bertarung. Buang 5 kartu dari atas Deck sendiri ke Trash."
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless", "Colorless"],
name: {
ja: "グレートバッシュ",
'zh-tw': "偉大猛擊",
th: "ตีถล่มใหญ่",
id: "Great Bash"
},
damage: 260,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card