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

47
data-asia/S/S4/069.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍王蠍V"
},
illustrator: "Eske Yoshinob",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "砸碎"
},
damage: 70,
cost: ["Darkness", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "危害爪"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的2個能量丟棄將對手的戰鬥寶可夢【中毒】與【麻痺】。"
},
damage: 130,
cost: ["Darkness", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card