mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
912 B
TypeScript
46 lines
912 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV7a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "アローラ ナッシーex"
|
|
},
|
|
|
|
illustrator: "aky CG Works",
|
|
category: "Pokemon",
|
|
hp: 300,
|
|
types: ["Dragon"],
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
cost: ["Grass", "Water"],
|
|
|
|
name: {
|
|
ja: "トロピカルフィーバー"
|
|
},
|
|
|
|
damage: 150,
|
|
|
|
effect: {
|
|
ja: "自分の手札から基本エネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。"
|
|
}
|
|
}, {
|
|
cost: ["Grass", "Water", "Fighting"],
|
|
|
|
name: {
|
|
ja: "ブンブンスフェーン"
|
|
},
|
|
|
|
effect: {
|
|
ja: "コインを1回投げオモテなら、相手のバトル場のたねポケモンをきぜつさせる。ウラなら、相手のベンチのたねポケモンを1匹選び、きぜつさせる。"
|
|
}
|
|
}],
|
|
|
|
retreat: 3,
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |