1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/S10b/058.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙尾怪手"
},
illustrator: "Scav",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "不管做什麼事都會用到尾巴。如果牠用2根尾巴抱緊你,就代表牠真的和你很親近。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "猴技"
},
effect: {
'zh-tw': "當這隻寶可夢受到招式的傷害時己方擲1次硬幣。若為正面則這隻寶可夢不會受到那個傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "投擲MAX"
},
effect: {
'zh-tw': "擲與這隻寶可夢身上附加的能量的數量相同次數的硬幣造成正面出現的次數×60點傷害。"
},
damage: "60×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card