1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

49 lines
962 B
TypeScript
Raw 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "シロナのロゼリア",
'zh-tw': "<竹蘭的>毒薔薇",
'zh-cn': "<竹蘭的>毒薔薇"
},
illustrator: "nisimono",
rarity: "Common",
category: "Pokemon",
dexId: [315],
hp: 70,
types: ["Grass"],
description: {
ja: "右手と 左手で 2種類の 毒を 使いわけて 攻撃する。 香りが 強いほど 元気だ。",
'zh-tw': "會用右手和左手分別施放 2種不同的毒來進行攻擊。 香氣越濃越有活力。",
'zh-cn': "會用右手和左手分別施放 2種不同的毒來進行攻擊。 香氣越濃越有活力。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "トゲでさす",
'zh-tw': "針刺",
'zh-cn': "針刺"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card