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

56
data-asia/S/S10P/059.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "樹枕尾熊"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
'zh-tw': "終其一生都處於睡著的狀態。 這是因為牠所吃的葉子裡 含有類似麻醉藥的成分。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "一場夢"
},
effect: {
'zh-tw': "若這隻寶可夢在【睡眠】,則就算受到對手的寶可夢招式的傷害而【氣絕】,對手也無法獲得獎賞卡。"
}
}],
attacks: [{
name: {
'zh-tw': "倒下"
},
effect: {
'zh-tw': "將這隻寶可夢【睡眠】。"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card