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

76 lines
2.2 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "アイアント",
'zh-tw': "鐵蟻",
th: "ไอแอนท์"
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
dexId: [632],
hp: 70,
types: ["Metal"],
description: {
ja: "大きな顎は 岩石をも かみ砕く。 サダイジャから タマゴを 守るため 群れで 戦う。",
'zh-tw': "巨大的顎部能咬碎岩石。為了不讓沙螺蟒把蛋搶走,會和其他同類一起並肩戰鬥。",
th: "กรามใหญ่นี้แม้จะเป็นหินก็กัดบดจนแหลกได้ ต่อสู้กันเป็นฝูงเพื่อปกป้องไข่จากซาไดจา"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "むらがるいかり",
'zh-tw': "憤怒堆積",
th: "กรูกันพิโรธ"
},
damage: "20×",
effect: {
ja: "自分の場の「アイアント」全員にのっているダメカンの数×20ダメージ。",
'zh-tw': "造成自己的場上的所有「鐵蟻」身上放置的傷害指示物數量×20點傷害。",
th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บน [ไอแอนท์] บนกระดานฝ่ายเราทุกตัว x20"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ハードシザー",
'zh-tw': "堅硬之剪",
th: "ฮาร์ดซิสเซอร์"
},
damage: 80,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-20」される。",
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-20」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-20]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card