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

59
data-asia/S/S11/050.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "謎擬Q"
},
illustrator: "Ligton",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "為了讓別人不要害怕自己,特意穿上了看似皮卡丘的破布, 結果卻變得更加令人毛骨悚然。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蠱惑"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "極惡之禮"
},
effect: {
'zh-tw': "造成對手的場上寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "10×",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card