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

25 lines
650 B
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 "../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