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

52
data-asia/S/S11/066.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍王蠍V"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "狂野風格"
},
effect: {
'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少對手的場上「一擊」「連擊」「匯流」寶可夢的數量。"
}
}],
attacks: [{
name: {
'zh-tw': "極限之尾"
},
effect: {
'zh-tw': "自己的1隻寶可夢也受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 190,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card