mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add SV10 (#747)
This commit is contained in:
56
data-asia/SV/SV10/063.ts
Normal file
56
data-asia/SV/SV10/063.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV10"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "<火箭隊的>尼多王ex",
|
||||
'zh-cn': "<火箭隊的>尼多王ex",
|
||||
ja: "ロケット団のニドキングex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "惡劣角擊",
|
||||
'zh-cn': "惡劣角擊",
|
||||
ja: "ダーティホーン"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為8個。",
|
||||
'zh-cn': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為8個。",
|
||||
ja: "相手のバトルポケモンをどくにする。このどくでのせるダメカンの数は8個になる。"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Darkness", "Darkness", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "王者衝擊",
|
||||
'zh-cn': "王者衝擊",
|
||||
ja: "キングインパクト"
|
||||
},
|
||||
|
||||
damage: 240,
|
||||
cost: ["Darkness", "Darkness", "Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I",
|
||||
rarity: "Double rare"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user