mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add SV9 (#674)
This commit is contained in:
70
data-asia/SV/SV9/039.ts
Normal file
70
data-asia/SV/SV9/039.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "メタグロス",
|
||||
'zh-tw': "巨金怪",
|
||||
'zh-cn': "巨金怪"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [376],
|
||||
hp: 170,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "4本脚を 折りたたんで 飛ぶ。 4つの 脳は スーパーコンピュータ よりも 優れていると いわれる。",
|
||||
'zh-tw': "會收起4隻腳飛行。 據說4個大腦比 超級電腦更優秀。",
|
||||
'zh-cn': "會收起4隻腳飛行。 據說4個大腦比 超級電腦更優秀。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "たたきつぶす",
|
||||
'zh-tw': "砸碎",
|
||||
'zh-cn': "砸碎"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "ジョイントビーム",
|
||||
'zh-tw': "結合光束",
|
||||
'zh-cn': "結合光束"
|
||||
},
|
||||
|
||||
damage: "130+",
|
||||
|
||||
effect: {
|
||||
ja: "自分のベンチに「ダンバル」「メタング」がいるなら、150ダメージ追加。",
|
||||
'zh-tw': "若自己的備戰區有「鐵啞鈴」「金屬怪」,則增加150點傷害。",
|
||||
'zh-cn': "若自己的備戰區有「鐵啞鈴」「金屬怪」,則增加150點傷害。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user