{{ set hasOfficialPrice = false }}
{{ set haslocaleOfficialPrices = false }}
{{ set officialPrice = '' }}
{{ set localeOfficialPrices = {} }}
{{ if detail.official_price_str }}
{{ set officialPrice = detail.official_price_str }}
{{ set hasOfficialPrice = true }}
{{ /if }}
{{ if detail.locale_official_price_str }}
{{ set localeOfficialPrices = detail.locale_official_price_str }}
{{ set haslocaleOfficialPrices = true }}
{{ /if }}
{{ set price = detail.price_str }}
{{ set localePrices = detail.locale_price_str }}
{{ if detail.discount_rate }}
{{ set discountRate = detail.discount_rate }}
| 割引 |
{{ discountRate }}% |
{{ /if }}
{{ if discountEndDate }}
| 割引終了時間 |
{{ discountEndDate | formatDate 'YYYY-MM-DD HH:mm' }} |
{{ /if }}
{{ if price }}
| 価格 (JPY) |
{{@ price }} 円
{{ if hasOfficialPrice }}
{{@ officialPrice }} 円
{{ /if }}
|
{{ /if }}
{{ if localePrices.en_US }}
{{ set price = localePrices.en_US }}
{{ set officialPrice = localeOfficialPrices.en_US }}
| 価格 (USD) |
{{@ price }}
{{ if haslocaleOfficialPrices }}
{{@ officialPrice }}
{{ /if }}
|
{{ /if }}
{{ if localePrices.ko_KR }}
{{ set price = localePrices.ko_KR }}
{{ set officialPrice = localeOfficialPrices.ko_KR }}
| 価格 (KRW) |
{{@ price }}
{{ if haslocaleOfficialPrices }}
{{@ officialPrice }}
{{ /if }}
|
{{ /if }}
{{ if localePrices.zh_CN }}
{{ set price = localePrices.zh_CN }}
{{ set officialPrice = localeOfficialPrices.zh_CN }}
| 価格 (RMB) |
{{@ price }}
{{ if haslocaleOfficialPrices }}
{{@ officialPrice }}
{{ /if }}
|
{{ /if }}
{{ if localePrices.zh_TW }}
{{ set price = localePrices.zh_TW }}
{{ set officialPrice = localeOfficialPrices.zh_TW }}
| 価格 (TWD) |
{{@ price }}
{{ if haslocaleOfficialPrices }}
{{@ officialPrice }}
{{ /if }}
|
{{ /if }}
{{ if detail.default_point_str }}
{{ set defaultPoint = detail.default_point_str }}
| ポイント |
{{ defaultPoint }} pt |
{{ /if }}
{{ if authors }}
| 作者 |
{{ each authors a }}
{{ a.name }}
{{ /each }}
|
{{ /if }}
{{ if updatedDate }}
| 発売日 |
{{ updatedDate | formatDate 'YYYY-MM-DD HH:mm' }} |
{{ /if }}
{{ if pubDate }}
| 販売日 |
{{ pubDate | formatDate 'YYYY-MM-DD HH:mm' }} |
{{ /if }}
{{ if workCategories }}
| 作品形式 |
{{ each workCategories w }}
{{ w.text }},
{{ /each }}
|
{{ /if }}
{{ if searchTags }}
| ジャンル |
{{ each searchTags s }}
{{ s.text }},
{{ /each }}
|
{{ /if }}
{{ if description }}
| 概要 |
{{ description }} |
{{ /if }}