1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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/S10a/061.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 索羅亞克V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 210,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "虛無折返"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 30
}, {
name: {
'zh-tw': "暗影旋風"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量改附於備戰寶可夢身上。"
},
damage: 130,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card