Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Auto committed Sep 25, 2023
1 parent a07921d commit 3e94c9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/game_data/spel2.lua

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/src/includes/_globals.md
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ default game values are: speed = 0.0125, y_limit = 98.5

Activate custom variables for y coordinate limit for hundun and spawn of it's heads
note: because those variables are custom and game does not initiate them, you need to do it yourself for each [Hundun](#Hundun) entity, recommending `set_post_entity_spawn`
default game value is: y_limit = 98.5, bird_head_spawn_y = 55, snake_head_spawn_y = 71
default game value are: y_limit = 98.5, rising_speed_x = 0, rising_speed_y = 0.0125, bird_head_spawn_y = 55, snake_head_spawn_y = 71

### change_poison_timer

Expand Down
2 changes: 2 additions & 0 deletions docs/src/includes/_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -4555,6 +4555,8 @@ bool | [birdhead_defeated](https://github.com/spelunky-fyi/overlunky/search?l=Lu
bool | [snakehead_defeated](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=snakehead_defeated) |
int | [hundun_flags](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=hundun_flags) | 1: Will move to the left, 2: Birdhead emerged, 3: Snakehead emerged, 4: Top level arena reached, 5: Birdhead shot last - to alternate the heads shooting fireballs
float | [y_limit](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=y_limit) | This is custom variable, you need [activate_hundun_hack](#activate_hundun_hack) to use it
float | [rising_speed_x](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=rising_speed_x) | This is custom variable, you need [activate_hundun_hack](#activate_hundun_hack) to use it
float | [rising_speed_y](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=rising_speed_y) | This is custom variable, you need [activate_hundun_hack](#activate_hundun_hack) to use it
float | [bird_head_spawn_y](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=bird_head_spawn_y) | This is custom variable, you need [activate_hundun_hack](#activate_hundun_hack) to use it
float | [snake_head_spawn_y](https://github.com/spelunky-fyi/overlunky/search?l=Lua&q=snake_head_spawn_y) | This is custom variable, you need [activate_hundun_hack](#activate_hundun_hack) to use it

Expand Down

0 comments on commit 3e94c9f

Please sign in to comment.