mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
57 lines
947 B
TypeScript
57 lines
947 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S9a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ロズレイド"
|
||
},
|
||
|
||
illustrator: "saino misaki",
|
||
category: "Pokemon",
|
||
dexId: [407],
|
||
hp: 120,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "かぐわしい 花の 香りで 相手を 惑わせ いばらの ムチで 激しく 打ちつける。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Grass"],
|
||
|
||
name: {
|
||
ja: "どくのムチ"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
effect: {
|
||
ja: "相手のバトルポケモンをどくにする。"
|
||
}
|
||
}, {
|
||
cost: ["Grass", "Colorless"],
|
||
|
||
name: {
|
||
ja: "アサシンローズ"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
effect: {
|
||
ja: "相手のバトルポケモンが特殊状態なら、相手のベンチポケモン1匹にも、60ダメージ。[ベンチは弱点・抵抗力を計算しない。]"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |