mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add SV10 (#747)
This commit is contained in:
54
data-asia/SV/SV10/054.ts
Normal file
54
data-asia/SV/SV10/054.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV10"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "恰雷姆",
|
||||
'zh-cn': "恰雷姆",
|
||||
ja: "チャーレム"
|
||||
},
|
||||
|
||||
illustrator: "Whisker",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "可以用藉由瑜珈修行 鍛鍊出來的精神力量, 來預測對手的行動。",
|
||||
'zh-cn': "可以用藉由瑜珈修行 鍛鍊出來的精神力量, 來預測對手的行動。",
|
||||
ja: "ヨガの 修行で 鍛えられた サイコパワーで 相手の 動きを 予測する ことが できるのだ。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "合氣掌",
|
||||
'zh-cn': "合氣掌",
|
||||
ja: "あいきしょう"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若這隻寶可夢與對手的戰鬥寶可夢身上附加的能量數量相同,則增加120點傷害。",
|
||||
'zh-cn': "若這隻寶可夢與對手的戰鬥寶可夢身上附加的能量數量相同,則增加120點傷害。",
|
||||
ja: "このポケモンと相手のバトルポケモンについているエネルギーの数が同じなら、120ダメージ追加。"
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I",
|
||||
rarity: "Uncommon",
|
||||
dexId: [308]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user