1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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

49
data-asia/S/SLL/003.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "恰雷姆",
ja: "チャーレム"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "能用在瑜伽的修行中鍛鍊出來的精神力量預測對手的行動。",
ja: "ヨガの 修行で 鍛えられた サイコパワーで 相手の 動きを 予測する ことが できるのだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "戰鬥舞步",
ja: "バトルステップ"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【鬥】能量卡以任意方式附於備戰寶可夢身上。並且重洗牌庫。",
ja: "自分の山札からエネルギーを2枚まで選び、ベンチポケモンに好きなようにつける。そして山札を切る。"
},
damage: 50,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [308]
}
export default card