Skip to content

Commit

Permalink
Merge pull request #40 from uku1928/patch-23
Browse files Browse the repository at this point in the history
Anvil property description change
  • Loading branch information
IonutParau authored Jul 24, 2023
2 parents 92d58c6 + 7681b13 commit aa5074e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/logic/cell_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3548,8 +3548,8 @@ Map<String, List<CellProperty>> props = {
"anvil": [
CellProperty("Gravity", "How quickly the cell accelerates downwards. By default it is 0.7 cell per tick.", "gravity", CellPropertyType.number, 0.7),
CellProperty("Velocity", "How fast it is currently going. Changes over time.", "velocity", CellPropertyType.number, 0.7),
CellProperty("Breaking Velocity", "The speed at which it can start breaking the cells it runs into instead of simply being stopped by them.", "breaking_velocity", CellPropertyType.number, 4),
CellProperty("Loss Upon Lethal Impact", "How quickly the cell accelerates downwards. By default it is 0.7 cell per tick.", "impact_loss", CellPropertyType.number, 0.3),
CellProperty("Breaking Velocity", "The speed at which it can start breaking the cells it falls onto instead of simply stopping all velocity.", "breaking_velocity", CellPropertyType.number, 4),
CellProperty("Loss Upon Lethal Impact", "How much velocity is lost upon breaking a cell. 0 is no change, 0.3 (default) is 30%, 1 is all velocity lost.", "impact_loss", CellPropertyType.number, 0.3),
CellProperty("Terminal Velocity", "The limit of how fast it can fall downwards.", "speed_limit", CellPropertyType.number, 5),
],
};

0 comments on commit aa5074e

Please sign in to comment.