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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S4/040.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "麻麻鰻魚王"
},
illustrator: "tetsuya koizumi",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
description: {
'zh-tw': "用手臂的力量從大海裡爬出,襲擊水邊的獵物。會瞬間將獵物拖入海中。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "麻痺齒型"
},
effect: {
'zh-tw': "在下個對手的回合若對手從手牌將能量卡附於受到這個招式的寶可夢身上則在那隻寶可夢身上放置6個傷害指示物。"
},
damage: 60,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "電擊灑水器"
},
effect: {
'zh-tw': "自己的1隻備戰寶可夢也受到30點傷害。對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 120,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card