Skip to content

Commit ecbd85c

Browse files
Add N52 update for Untitled Pixel Wizards Game (#1529)
Co-authored-by: Jan Hohenheim <[email protected]>
1 parent b00031b commit ecbd85c

File tree

6 files changed

+42
-1
lines changed

6 files changed

+42
-1
lines changed

Diff for: content/.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.{md,mkdn}]
2+
trim_trailing_whitespace = false
3+
indent_style = space

Diff for: content/news/052/index.md

+26
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Feel free to send PRs about your own projects!
3131

3232
- [Announcements](#announcements)
3333
- [Game Updates](#game-updates)
34+
- [Untitled Pixel Wizards Game](#untitled-pixel-wizards-game)
3435
- [Engine Updates](#engine-updates)
3536
- [Learning Material Updates](#learning-material-updates)
3637
- [Tooling Updates](#tooling-updates)
@@ -70,6 +71,31 @@ If needed, a section can be split into subsections with a "------" delimiter.
7071

7172
## Game Updates
7273

74+
### [Untitled Pixel Wizards Game][pixel-wizards]
75+
76+
{{ embed_video(type="video/mp4", src="untitled-pixel-wizards-game.mp4",
77+
caption="Enemies now perceive, pursue and attack.. and occasionally get burned to death.") }}
78+
79+
[![A Hound chases a player, and its corpse ragdolls after it is burned to death by a fireball](untitled-pixel-wizards-game.gif)][pixel-wizards]
80+
_Enemies now perceive, pursue and attack.. and occasionally get burned to death._
81+
82+
[Untitled Pixel Wizards Game][pixel-wizards] is a local-multiplayer [Noita]-like platformer about
83+
killing baddies using spells powered by pixel physics. This month was focused on juicing up said baddies:
84+
85+
- [Pew Pew Pew][pixel-wizards-update-1]: baddies learned to shoot at players.
86+
- [Hot Pursuit][pixel-wizards-update-2]: baddies also learned to chase players! (They're real smart.)
87+
- [Status Update][pixel-wizards-update-3]: physically-simulated pixels learn to burn & poison players & baddies.
88+
- [Ragdolls][pixel-wizards-update-4]: corpses of dead baddies learn to tumble around all realistic-like.
89+
- [Fiddling with Fire][pixel-wizards-update-5]: the fire mechanic figures out how to better burn baddies.
90+
91+
[pixel-wizards]: https://slowrush.dev
92+
[Noita]: https://store.steampowered.com/app/881100/Noita/
93+
[pixel-wizards-update-1]: https://www.slowrush.dev/news/pew-pew/
94+
[pixel-wizards-update-2]: https://www.slowrush.dev/news/hot-pursuit/
95+
[pixel-wizards-update-3]: https://www.slowrush.dev/news/status-update/
96+
[pixel-wizards-update-4]: https://www.slowrush.dev/news/ragdolls/
97+
[pixel-wizards-update-5]: https://www.slowrush.dev/news/fiddling-with-fire/
98+
7399
## Engine Updates
74100

75101
### [godot-rust]

Diff for: content/news/052/untitled-pixel-wizards-game.gif

1.72 MB
Loading

Diff for: content/news/052/untitled-pixel-wizards-game.mp4

603 KB
Binary file not shown.

Diff for: sass/_extra.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ a.btn {
121121
// A hack for image captions.
122122
// See https://stackoverflow.com/questions/19331362/using-an-image-caption-in-markdown-jekyll
123123
img + em,
124-
a:first-child + em:last-child {
124+
a:first-child + em:last-child,
125+
video + em {
125126
display: block;
126127
text-align: center;
127128
color: $grey-color;

Diff for: templates/shortcodes/embed_video.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- {#
2+
Embed a video into a markdown file. Example usage:
3+
4+
{{ embed_video(type="video/mp4", src="my-video.mp4", caption="Some caption.") }}
5+
6+
#} -->
7+
<video controls autoplay muted loop>
8+
<source
9+
type="{{ type }}" src="{{ src }}"
10+
onerror="parentNode.parentElement.innerText = 'Sorry, this video does not exist or your browser does not support the video codec. Try a different browser!'" />
11+
</video> {% if caption %}<em>{{ caption }}</em>{% endif %}

0 commit comments

Comments
 (0)