1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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/S11/030.ts Normal file
View File

@@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "酋雷姆VMAX"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 330,
types: ["Water"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "白銀世界"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的牌庫上方1張卡丟棄若那張卡為【水】能量卡則附於自己的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨冰霜"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的任意數量的【水】能量卡丟棄增加其張數×50點傷害。"
},
damage: "120+",
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card