1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

70 lines
1.6 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "エアームド",
'zh-tw': "盔甲鳥",
th: "แอร์มุโด"
},
category: "Pokemon",
rarity: "Common",
illustrator: "toi8",
dexId: [227],
hp: 120,
types: ["Metal"],
description: {
ja: "抜け落ちた 羽根から 剣が 作られることから 紋章の 図案として 人気が 高い。",
'zh-tw': "由於牠脫落下來的羽毛 能夠製成劍,因此作為 家徽的圖案也很有人氣。",
th: "เพราะมีการนำขนที่ร่วงออกมาทำเป็นดาบ จึงได้รับความนิยมสูงในการนำมาทำเป็นแบบของตราประจำตระกูล"
},
stage: "Basic",
attacks: [{
cost: ["Metal"],
name: {
ja: "カッターウインド",
'zh-tw': "利刃之風",
th: "คัตเตอร์วินด์"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "おおあらし",
'zh-tw': "大風暴",
th: "พายุใหญ่"
},
damage: 90,
effect: {
ja: "場に出ているスタジアムをトラッシュする。",
'zh-tw': "將場上的競技場卡丟棄。",
th: "ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card