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

50
data-asia/S/SJ/004.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SJ"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿勃梭魯"
},
illustrator: "Eri Yamaki",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "老人們稱呼牠為災禍寶可夢,對牠十分忌諱。但目前牠預知 災害的能力正越來越受到重視。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拖出"
},
effect: {
'zh-tw': "選擇對手的1隻備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "劈開"
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card