1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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/SV/SVD/072.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "黑魯加ex"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 270,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "邪惡爪"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。"
},
damage: 90,
cost: ["Darkness", "Darkness"]
}, {
name: {
'zh-tw': "追獵獠牙"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 220,
cost: ["Darkness", "Darkness", "Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card