mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 19:19:50 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
70
data-asia/SV/SV6/044.ts
Normal file
70
data-asia/SV/SV6/044.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "タイカイデン",
|
||||
'zh-tw': "大電海燕"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Uncommon",
|
||||
illustrator: "Anesaki Dynamic",
|
||||
dexId: [941],
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
ja: "のど袋に 翼で 作った 電気を 溜める。 羽の 油分が とても 少なく 泳ぎは 苦手。",
|
||||
'zh-tw': "會把翅膀製造的電儲存到喉囊裡。 由於羽毛含的油脂少之又少, 導致牠不是很擅長游泳。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ふうりょくチャージ",
|
||||
'zh-tw': "風力充能"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
ja: "次の自分の番、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+120」される。",
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+120」點。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ストロングボルト",
|
||||
'zh-tw': "強力伏特"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
|
||||
'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user