Skip to content

Commit

Permalink
Merge branch 'develop' into feature/xtea-loading
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/game-engine/config/index.ts
  • Loading branch information
Promises committed Apr 4, 2021
2 parents 24d412d + 6673f45 commit 8583e3b
Show file tree
Hide file tree
Showing 35 changed files with 2,825 additions and 1,618 deletions.
38 changes: 35 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,41 @@ module.exports = {
"object-curly-spacing": [ "error", "always" ],
"no-var": "error",
"prefer-const": "error",
"indent": [ "warn", 4, {
"SwitchCase": 1
} ],
"indent": [
"error", 4, {
"SwitchCase": 1,
"FunctionDeclaration": {
"parameters": "off",
"body": 1
},
"FunctionExpression": {
"parameters": "off",
"body": 1
},
"offsetTernaryExpressions": true
}
],
"@typescript-eslint/indent": [
"error", 4, {
"SwitchCase": 1,
"FunctionDeclaration": {
"parameters": "off",
"body": 1
},
"FunctionExpression": {
"parameters": "off",
"body": 1
},
"offsetTernaryExpressions": true,
"ignoredNodes": [
"ArrowFunctionExpression > BlockStatement",
"NoSubstitutionTemplateLiteral",
"TemplateLiteral",
"TSTypeAliasDeclaration *"
]
}
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-explicit-any": 0,
Expand Down
28 changes: 15 additions & 13 deletions data/config/items/barrows/dharoks.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,34 @@
"strength": 105
}
},
"game_id": 4718,
"subitems": [
"variations": [
{
"suffix": "100",
"tradable": false,
"game_id": 4886
"game_id": 4718,
"suffix": "0"
},
{
"suffix": "75",
"tradable": false,
"game_id": 4887
"game_id": 4886,
"suffix": "1"
},
{
"suffix": "50",
"tradable": false,
"game_id": 4888
"game_id": 4887,
"suffix": "2"
},
{
"suffix": "25",
"tradable": false,
"game_id": 4889
"game_id": 4888,
"suffix": "3"
},
{
"suffix": "0",
"tradable": false,
"game_id": 4890
"game_id": 4889,
"suffix": "4"
},
{
"game_id": 4890,
"suffix": "5"
}
]
}
Expand Down
Loading

0 comments on commit 8583e3b

Please sign in to comment.