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

52
data-asia/S/S8/027.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "拳海參"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
'zh-tw': "覆蓋著皮膚的黏液具有出眾的保濕效果,即使在陸地上待好幾天也不會乾掉。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "拳海參上投"
},
effect: {
'zh-tw': "若手牌有這張卡則在自己的回合時可使用1次。將這張卡放回牌庫下方。然後從自己的牌庫抽出1張卡。在這個回合若已經使出了其他的「拳海參上投」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "拳骨"
},
damage: 50,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card