1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SC2b/110.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "優雅貓"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
'zh-tw': "過著居無定所生活的寶可夢。即使有其他寶可夢接近自己睡覺的地方也絕不會去爭鬥,而會換個地方睡覺。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "媚惑之尾"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後將新上場的寶可夢【混亂】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "月亮衝擊"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card