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

54
data-asia/S/S8b/077.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "謎擬VMAX"
},
illustrator: "Studio Bora Inc.",
category: "Pokemon",
hp: 300,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "靈異數字"
},
effect: {
'zh-tw': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。在這個回合若從自己的手牌使出了「阿塞蘿拉的預感」則放置的傷害指示物的數量改為13個。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "極巨暗影"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 120,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card