1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

51
data-asia/S/S-P/180.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "千面避役VMAX"
},
illustrator: "Kazuma Koda",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "雙重射擊手"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張【水】能量卡丟棄則可使用1次。在對手的2隻備戰寶可夢身上各放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "超極巨漩澴盤渦"
},
effect: {
'zh-tw': "若希望選擇1個這隻寶可夢身上附加的能量放回手牌。這個情況下增加70點傷害。"
},
damage: "70+",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card