mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2026-03-23 07:37:24 +01:00
Some checks are pending
Deploy static content to Pages / deploy (push) Waiting to run
Code quality / quality (push) Waiting to run
* refactor: migrate COA * fix: PR feedback
37 lines
671 B
TypeScript
37 lines
671 B
TypeScript
// Line weights for random selection
|
|
// Different from lines.ts which contains SVG path data for rendering
|
|
export const lineWeights = {
|
|
straight: 50,
|
|
wavy: 8,
|
|
engrailed: 4,
|
|
invecked: 3,
|
|
rayonne: 3,
|
|
embattled: 1,
|
|
raguly: 1,
|
|
urdy: 1,
|
|
dancetty: 1,
|
|
indented: 2,
|
|
dentilly: 1,
|
|
bevilled: 1,
|
|
angled: 1,
|
|
flechy: 1,
|
|
barby: 1,
|
|
enclavy: 1,
|
|
escartely: 1,
|
|
arched: 2,
|
|
archedReversed: 1,
|
|
nowy: 1,
|
|
nowyReversed: 1,
|
|
embattledGhibellin: 1,
|
|
embattledNotched: 1,
|
|
embattledGrady: 1,
|
|
dovetailedIndented: 1,
|
|
dovetailed: 1,
|
|
potenty: 1,
|
|
potentyDexter: 1,
|
|
potentySinister: 1,
|
|
nebuly: 2,
|
|
seaWaves: 1,
|
|
dragonTeeth: 1,
|
|
firTrees: 1,
|
|
};
|