1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

61 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "恰雷姆ex",
'zh-cn': "恰雷姆ex",
ja: "チャーレムex"
},
illustrator: "PLANETA Yamashita",
category: "Pokemon",
hp: 260,
types: ["Fighting"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "氣功指壓",
'zh-cn': "氣功指壓",
ja: "きこうあつ"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。",
'zh-cn': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。",
ja: "相手のバトルポケモンの残りHPが「50」になるように、ダメカンをのせる。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "瑜伽踢",
'zh-cn': "瑜伽踢",
ja: "ヨガキック"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點・抵抗力。",
'zh-cn': "這個招式的傷害不計算弱點・抵抗力。",
ja: "このワザのダメージは弱点・抵抗力を計算しない。"
},
damage: 190,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "None"
}
export default card