mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
65 lines
1.2 KiB
TypeScript
65 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "キマワリ",
|
||
'zh-tw': "向日花怪"
|
||
},
|
||
|
||
category: "Pokemon",
|
||
rarity: "Uncommon",
|
||
illustrator: "Ounishi",
|
||
dexId: [192],
|
||
hp: 100,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "浴びた 日差しを エネルギーに 変換するため 昼間は ずっと 太陽の方を 向いている。",
|
||
'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Grass"],
|
||
|
||
name: {
|
||
ja: "ひざしがえし",
|
||
'zh-tw': "光返"
|
||
},
|
||
|
||
damage: "60×",
|
||
|
||
effect: {
|
||
ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。",
|
||
'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。"
|
||
}
|
||
}, {
|
||
cost: ["Grass", "Colorless"],
|
||
|
||
name: {
|
||
ja: "メガドレイン",
|
||
'zh-tw': "超級吸取"
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
effect: {
|
||
ja: "このポケモンのHPを「30」回復する。",
|
||
'zh-tw': "將這隻寶可夢恢復「30」HP。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |