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

54
data-asia/S/S10b/020.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "呆殼獸"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "被大舌貝咬住尾巴而進化。大舌貝陶醉在尾巴滲出的甜味裡,彷彿置身夢境。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "轉轉衝撞"
},
effect: {
'zh-tw': "將雙方的戰鬥寶可夢【睡眠】。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "黃昏耀閃"
},
effect: {
'zh-tw': "這個招式只有在對手剩餘獎賞卡的張數為1張時才可使用。獲得2張自己的獎賞卡。"
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card