1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

63
data-asia/SV/SV7/035.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "鍬農炮蟲",
'zh-cn': "鍬農炮蟲",
ja: "クワガノン"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
description: {
'zh-tw': "會抱住蟲電寶獲取電能, 然後從自己的大顎 連續發射強力的電磁光束。",
'zh-cn': "會抱住蟲電寶獲取電能, 然後從自己的大顎 連續發射強力的電磁光束。",
ja: "デンヂムシを 抱えて 電気を もらい 大あごから 強力な 電磁ビームを 連射する。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "伏特替換",
'zh-cn': "伏特替換",
ja: "ボルトチェンジ"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰區的【雷】寶可夢互換。",
'zh-cn': "將這隻寶可夢與備戰區的【雷】寶可夢互換。",
ja: "このポケモンをベンチのポケモンと入れ替える。"
},
damage: 90,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "閃雷攻擊",
'zh-cn': "閃雷攻擊",
ja: "スパーキングアタック"
},
damage: 240,
cost: ["Lightning", "Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon",
dexId: [738]
}
export default card