mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Update asian sets (#554)
This commit is contained in:
54
data-asia/SV/SV7/030.ts
Normal file
54
data-asia/SV/SV7/030.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV7"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "燈籠魚",
|
||||
'zh-cn': "燈籠魚",
|
||||
ja: "チョンチー"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會從2根觸手的前端 釋放正負電流來麻痺對手。",
|
||||
'zh-cn': "會從2根觸手的前端 釋放正負電流來麻痺對手。",
|
||||
ja: "2つの 触手の 先から プラスと マイナスの 電気を 流して 相手を しびれさせる。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "雙重伏特",
|
||||
'zh-cn': "雙重伏特",
|
||||
ja: "ダブルボルト"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。",
|
||||
'zh-cn': "擲2次硬幣,造成正面出現的次數×20點傷害。",
|
||||
ja: "コインを2回投げ、オモテの数×20ダメージ。"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H",
|
||||
rarity: "Common",
|
||||
dexId: [170]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user