Ir para o conteúdo
Riot Bits

Riot Bits

  • Lar
  • Notícias
  • Guias
  • Guias de vídeo
  • Notas do Patch
  • Denunciar abuso
  • Alternar formulário de pesquisa
Loop Odyssey

Loop Odyssey – Game Mechanics and Formulas

postado em 12/12/2021 Por daniferrito Sem comentários em Loop Odyssey – Game Mechanics and Formulas
  • Título: Loop Odyssey
  • Data de lançamento:
  • Desenvolvedor:
  • Editor:
Information about Loop Odyssey is still incomplete. Por favor, ajude-nos a preencher os detalhes do jogo usando este formulário de contato.

This guide aims to explore how every single mechanic in the game works, and how they interact with each other.

As we are discussing all of the mechanics, this guide will have some early spoilers on how the mechanics themselves work at the beginning and an info dump with spoilers for the full game at the end.

Familiarity

Familiarity reduces the mana cost to repeat actions.

Each tile on the game has a familiarity level for each of the allowed actions on that tile (mover, interagir, falar, ataque). Movement depends on the cost and familiarity of the tile you are leaving, e

Each time an action is completed, familiarity XP is awarded. The amount of familiarity XP awarded each time is random between 14 e 26, which is tripled if this is the first time the action was completed this loop and is multiplied by 7 if the player has a certain late-game buff.

Tecnicamente, the random range is calculated by round(20 * random_range(0.7, 1.3)), which makes the two outside values slightly less common. This rounding effect is negligible.

The familiarity XP cost per level is calculated by:

150 * ( 1 + (currentlLevel * 0.1 ) )

So the overall XP requirement for a particular level is:

(15/2) * currentLevel * (currentLevel + 21)

And the level for a particular XP amount is:

chão(-(21/2)+(sqrt(8*xp+6615))/(2*sqrt(15)))

Once we have the familiarity level for a tile, the cost reduction is calculated by:

pow(1+familiarityLvl/20,0.8)

Ticks and Speed

Ticks are the smallest amount of time that the game calculates. Each tic, the game will try to advance by how many mana points the “Mana spent per tick” indica, at the absolute top right of the screen.

How to increase “Mana spent per tick” (from now on simply speed):

There are two main ways that it is possible to increase speed:

  • Hearth levels. Hearth levels give 0.3 speed each, added to the base 1 velocidade.
  • Bonus time. Bonus time simply multiplies speed by 3 while it is on.

Então, por exemplo:

  • For an action that takes 10 mana, and a speed of 1, the action will take 10 ticks, and consume 10 mana
  • For an action that takes 10 mana, and a speed of 4, the action will take 3 ticks, and consume 10 mana (o 2 overflowing mana that was spent on tick 3 are refunded)

This means that having extra hearth levels will simply make the loops go faster, without affecting any other costs (although adding points into hearth mean fewer points into spirit or body).

Combate

Each combat has a base mana cost, dano, e velocidade de ataque
The cost gets reduced by familiarity and by the attack of the player.

Por exemplo, if combat has 1000 base cost, the familiarity of 10, and you have an attack of 5:

Cost = baseCost / ( (1+(familiarity/20))^0.8 * ataque ) Cost = 1000 / ( 1.38 * 5 ) = 145

So the combat will cost 145 mana to complete

The enemy has an attack of 1 and an attack speed of 75, which means that it will attack every 75/1.5=50 mana (it is just divided as a balance tweak, literalmente).

So the player will take damage once, and would take damage again at 150 mana, but avoid the next attack. As the damage is 1, the player takes 1 ponto de dano (half a heart).

The defense would reduce this damage.

Na prática, the combat calculations are also calculated with ticks.

With a speed of 4 (10 hearths) the combat would look like this:

marcação  1: EAT =  4, RC = 141 //EAT = EnemyAttackTimer
tick  2: EAT =  8, RC = 137 //RC = RemainingCost
...
marcação  9: EAT = 52, RC = 93 //EAT -> 0, take damage
tick 10: EAT = 4, RC = 89 
...
marcação 26: EAT = 52, RC = 45 //EAT -> 0, take damage
tick 27: EAT = 4, RC = 41 
...
marcação 31: EAT = 44, RC = -1 //Combat complete

As the enemy attack timer gets reset to 0 each time, some speeds end up with lower attacks received depending on the rounding involved. This is probably a bug and should get fixed in the future.

Defesa

Defense consists of three parameters:

  • Quantia (directly from shield)
  • Eficiência (a combination of body levels and the defense efficiency skill)
  • Desviar (from the defense parrying skill)

Each time the player would take damage if there is some defense remaining:

  • Convert part of that damage, depending on defense efficiency, into defense damage, the rest gets through as normal damage.
  • For the defense damage taken, reduce that damage by the parry.

Finalmente, reduce the remaining defense by the defense damage.

Como exemplo, com 2 defesa, 75% efficiency and 50% Parry, and enemy dealing 1 dano:

pegar 0.25 dano, pegar 0.375 defense damage, 1.625 defense remaining
take 0.25 dano, pegar 0.375 defense damage, 1.250 defense remaining
take 0.25 dano, pegar 0.375 defense damage, 0.875 defense remaining
take 0.25 dano, pegar 0.375 defense damage, 0.500 defense remaining
take 0.25 dano, pegar 0.375 defense damage, 0.125 defense remaining
take 0.25 dano, pegar 0.375 defense damage, no defense remaining
take 1 damage
take 1 dano
...

Na prática, for a fight that consumes all of the player’s defense, the effect of defense is a plain reduction in total damage taken.

Defesa / ( 1 - Parry )

Unlocks for Speaking

Speaking unlocks shown in the storybook, and are simply based on the familiarity of the speaking action. The storybook will show the number of interactions the player did to obtain the unlock, but the exact number will vary from player to player, as familiarity gain varies randomly and whether it is the first time the action was done in the loop.

The familiarity level required for each unlocking is listed at the end.

Permanent Progress Tiles

Some tiles have permanent progression. This progression can be one of two ways:

By familiarity. The sewers simply require a familiarity level of 20 to explore completely.

By repeat count. The maps require 100 interactions to be completely read.

Isso é tudo o que estamos compartilhando hoje para isso Loop Odyssey guia. Este guia foi originalmente criado e escrito por daniferrito. Caso não atualizemos este guia, você pode encontrar a atualização mais recente seguindo este link.

Se você acredita que algum conteúdo deste site viola seus direitos, incluindo seus direitos de propriedade intelectual, entre em contato conosco imediatamente usando nosso formulário de contato.
Guias Tag:Loop Odyssey

Navegação de artigos

Postagem anterior: Loop Odyssey – Core Mechanics Guide
próxima postagem: F1 2021 – Best Logitech G920 Settings

Deixe um comentário Cancelar resposta

O seu endereço de email não será publicado. Campos obrigatórios marcados com *

  • Título: Loop Odyssey
  • Data de lançamento:
  • Desenvolvedor:
  • Editor:
Information about Loop Odyssey is still incomplete. Por favor, ajude-nos a preencher os detalhes do jogo usando este formulário de contato.

Isenção de responsabilidade

Todo o conteúdo citado é derivado de suas respectivas fontes. Se você acha que usamos seu conteúdo sem permissão, certifique-se de entrar em contato conosco e levaremos isso a sério.
  • Sobre nós
  • Contate-nos
  • política de Privacidade
  • Termos de serviço

direito autoral © 2025 Riot Bits.

Distribuído por PressBook Notícias tema WordPress