slight update to the rating system

This commit is contained in:
Wouter Groeneveld 2022-11-01 09:41:58 +01:00
parent e68ee3d1bc
commit dcf9940d91
12 changed files with 16 additions and 42 deletions

View File

@ -25,13 +25,13 @@ We retro fans have to stick together you know!
### About the Rating System
Inspired by the review methodologies of _GoodReads_ and _EuroGamer_, I award each game a simple score between 1 (very bad) and 5 (very good). They have the following meaning:
Inspired by the review methodologies of _GoodReads_ and _EuroGamer_, I award each game a simple score between 1 (very bad) and 5 (very good). They have the following meaning:
1. **Avoid**---do not play this game unless you prefer bad ones.
2. **Mediocre**---for fans only: some strenghts and a lot of weaknesses.
3. **Good**---very likable if you can forgive its flaws.
4. **Recommended**---an excellent game generally well worth your time.
5. **Essential**---Game of the Year or parhaps even Generation material.
- <img src="/img/1.png" class="score" title="Score: 1/5" />---**Bad**<br/>Avoid this game unless you prefer bad ones.
- <img src="/img/2.png" class="score" title="Score: 2/5" />---**Mediocre**<br/>For fans only: some strenghts and a lot of weaknesses.
- <img src="/img/3.png" class="score" title="Score: 3/5" />---**Good**<br/>Very likable if you can forgive its flaws.
- <img src="/img/4.png" class="score" title="Score: 4/5" />---**Great**<br/>A recommended game generally well worth your time.
- <img src="/img/5.png" class="score" title="Score: 5/5" />---**Amazing**<br/>An essential game worth the Game of the Year title.
---

View File

@ -1,7 +1,7 @@
---
title: "TOEM: A Wholesome Photo Adventure"
date: 2022-04-10
score: 4
score: 5
game_release_year: 2021
howlongtobeat_id: 86977
howlongtobeat_hrs: 3
@ -40,3 +40,5 @@ This sounds silly, but we were even a little bit emotional after the endgame. Th
Have fun taking pictures of snails. We knew we did.
**Addendum**, 31 Oct. 2022: Something We Made released a _free_ content update for TOEM, adding an entire new island to explore, full of old and new NPCs. This shows the kind of dedication the developers are aiming for. While rebooting the game after a few months, all emotions came right back. This game does deserve more than a 4/5---I'm changing the score. There!

BIN
static/img/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/img/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/img/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/img/4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/img/5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1007 B

View File

@ -49,9 +49,6 @@ header
padding-bottom: 14px
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6
line-height: 1.2
ol, ul
margin-top: 0

View File

@ -316,8 +316,5 @@ a:hover, .link:hover
.score
border: none
width: 1em
&-on
opacity: 1
&-off
opacity: 0.2
height: 1.1em
margin-bottom: -4px

View File

@ -59,21 +59,8 @@
{{ if isset .Params "score" }}
<p>
{{ $score := .Params.score }}
<strong>Final verdict</strong>: {{ $score }}/5
{{ if eq $score 5 }}
It was amazing!
{{ else if eq $score 4 }}
I really liked it!
{{ else if eq $score 3 }}
I liked it.
{{ else if eq $score 2 }}
It was OK.
{{ else if eq $score 1 }}
I did not like it.
{{ else }}
Horrible.
{{ end}}
</p>
<strong>Verdict</strong>: {{ $score }}/5—{{ if eq $score 5 }}Amazing{{ else if eq $score 4 }}Great{{ else if eq $score 3 }}Good{{ else if eq $score 2 }}Mediocre{{ else if eq $score 1 }}Bad{{ else }}Indifferent{{ end}}.
</p>
{{ end }}
<p>
@ -109,7 +96,7 @@
{{ end }}
{{ end }}
{{ if ne $thumb "" }}
<img src="{{ $.Site.BaseURL }}{{ $thumb }}" alt="game cover image" alt="game cover" style="border: 1px solid black"/>
<img src="{{ $baseurl }}{{ $thumb }}" alt="game cover image" alt="game cover" style="border: 1px solid black"/>
{{ end }}
</p>
{{ end }}

View File

@ -7,15 +7,6 @@
{{ else }}
<span class="rating" style="display: none;">{{ $score }}</span>
{{ end }}
{{ range after 0 (seq $score)}}
<img src="/img/random/4.gif" class="score score-on" title="Score: {{ $score }}/5" />
{{ end }}
{{ range after 0 (seq (sub 5 $score))}}
<img src="/img/random/4.gif" class="score score-off" title="Score: {{ $score }}/5" />
{{ end }}
{{ if not $simplescore }}
{{ partial "scorelabel" . }}.
{{ end }}
<img src="/img/{{ $score }}.png" class="score" title="Score: {{ $score }}/5" />{{ if not $simplescore }}—{{ partial "scorelabel" . }}.{{ end }}
</p>
{{ end }}

View File

@ -1 +1 @@
{{ if eq $.Params.score 5 }}Essential{{ else if eq $.Params.score 4 }}Recommended{{ else if eq $.Params.score 3 }}Good{{ else if eq $.Params.score 2 }}Mediocre{{ else if eq $.Params.score 1 }}Avoid{{ else }}Indifferent{{ end}}
{{ if eq $.Params.score 5 }}Amazing{{ else if eq $.Params.score 4 }}Great{{ else if eq $.Params.score 3 }}Good{{ else if eq $.Params.score 2 }}Mediocre{{ else if eq $.Params.score 1 }}Bad{{ else }}Indifferent{{ end}}