mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
523 B
TypeScript
22 lines
523 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVLN"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "アカマツ"
|
|
},
|
|
|
|
illustrator: "GIDORA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |