mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
25 lines
650 B
TypeScript
25 lines
650 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S9"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "黑連的關心",
|
||
ja: "チェレンの気くばり"
|
||
},
|
||
|
||
illustrator: "Yusuke Ohmura",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "選擇1隻自己的身上放置有傷害指示物的【無】寶可夢,將那隻寶可夢與附加的卡,全部放回手牌。",
|
||
ja: "ダメカンがのっている自分のポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、手札にもどす。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "F",
|
||
rarity: "Uncommon"
|
||
}
|
||
|
||
export default card |