1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

51
data-asia/S/S8/015.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "水晶燈火靈VMAX"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 320,
types: ["Fire"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "咒縛陽炎"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出並附上「寶可夢道具」。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨靈騷"
},
effect: {
'zh-tw': "查看對手的手牌造成其中訓練家卡的張數×70點傷害。"
},
damage: "70×",
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card