1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-01 12:22:02 +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/SCB/105.ts Normal file
View File

@@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SCB"
const card: Card = {
set: Set,
name: {
'zh-tw': "大舌舔"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "比起手腳,牠更加擅長使用舌頭。就算是1粒小小的豆子,牠也能靈巧地用舌頭撿起來。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "大舌選擇"
},
effect: {
'zh-tw': "對手將對手自己的牌庫上方3張卡丟棄。或者對手選擇3張對手自己的手牌將其丟棄。"
},
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "抛擲"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card