Initial commit

This commit is contained in:
Omghi I 2022-10-09 02:48:47 +00:00
commit 70aefd11ad
92 changed files with 3818 additions and 0 deletions

179
.replit Normal file
View file

@ -0,0 +1,179 @@
hidden=[".config"]
# hosting is currently hardcoded for this language
# [hosting]
# route = "/"
# directory= "/"
[nix]
channel = "stable-21_11"
[languages.html]
pattern = "**/*.html"
[languages.html.languageServer]
start = "vscode-html-language-server --stdio"
[languages.html.languageServer.initializationOptions]
provideFormatter = true
[languages.html.languageServer.configuration.html]
customData = [ ]
autoCreateQuotes = true
autoClosingTags = true
mirrorCursorOnMatchingTag = false
[languages.html.languageServer.configuration.html.completion]
attributeDefaultValue = "doublequotes"
[languages.html.languageServer.configuration.html.format]
enable = true
wrapLineLength = 120
unformatted = "wbr"
contentUnformatted = "pre,code,textarea"
indentInnerHtml = false
preserveNewLines = true
indentHandlebars = false
endWithNewline = false
extraLiners = "head, body, /html"
wrapAttributes = "auto"
templating = false
unformattedContentDelimiter = ""
[languages.html.languageServer.configuration.html.suggest]
html5 = true
[languages.html.languageServer.configuration.html.validate]
scripts = true
styles = true
[languages.html.languageServer.configuration.html.hover]
documentation = true
references = true
[languages.html.languageServer.configuration.html.trace]
server = "off"
[languages.javascript]
pattern = "**/{*.js,*.jsx,*.ts,*.tsx,*.mjs,*.cjs}"
[languages.javascript.languageServer]
start = "typescript-language-server --stdio"
[languages.css]
pattern = "**/{*.less,*.scss,*.css}"
[languages.css.languageServer]
start = "vscode-css-language-server --stdio"
[languages.css.languageServer.configuration.css]
customData = [ ]
validate = true
[languages.css.languageServer.configuration.css.completion]
triggerPropertyValueCompletion = true
completePropertyWithSemicolon = true
[languages.css.languageServer.configuration.css.hover]
documentation = true
references = true
[languages.css.languageServer.configuration.css.lint]
# Configure linting
# ignore = don't show any warning or error
# warning = show yellow underline
# error = show red underline
argumentsInColorFunction = "error" # Invalid number of parameters
boxModel = "ignore" # Do not use width or height when using padding or border
compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
duplicateProperties = "warning" # Do not use duplicate style definitions
emptyRules = "warning" # Do not use empty rulesets
float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
importStatement = "ignore" # Import statements do not load in parallel
propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
universalSelector = "ignore" # The universal selector (*) is known to be slow
unknownAtRules = "warning" # Unknown at-rule
unknownProperties = "warning" # Unknown property.
validProperties = [ ] # add some properties that the linter doesn't know about
unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
zeroUnits = "ignore" # No unit for zero needed
[languages.css.languageServer.configuration.css.trace]
server = "off"
[languages.css.languageServer.configuration.scss]
validate = true
[languages.css.languageServer.configuration.scss.completion]
triggerPropertyValueCompletion = true
completePropertyWithSemicolon = true
[languages.css.languageServer.configuration.scss.hover]
documentation = true
references = true
[languages.css.languageServer.configuration.scss.lint]
# Configure linting
# ignore = don't show any warning or error
# warning = show yellow underline
# error = show red underline
argumentsInColorFunction = "error" # Invalid number of parameters
boxModel = "ignore" # Do not use width or height when using padding or border
compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
duplicateProperties = "warning" # Do not use duplicate style definitions
emptyRules = "warning" # Do not use empty rulesets
float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
importStatement = "ignore" # Import statements do not load in parallel
propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
universalSelector = "ignore" # The universal selector (*) is known to be slow
unknownAtRules = "warning" # Unknown at-rule
unknownProperties = "warning" # Unknown property.
validProperties = [ ] # add some properties that the linter doesn't know about
unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
zeroUnits = "ignore" # No unit for zero needed"
[languages.css.languageServer.configuration.less]
validate = true
[languages.css.languageServer.configuration.less.completion]
triggerPropertyValueCompletion = true
completePropertyWithSemicolon = true
[languages.css.languageServer.configuration.less.hover]
documentation = true
references = true
[languages.css.languageServer.configuration.less.lint]
# Configure linting
# ignore = don't show any warning or error
# warning = show yellow underline
# error = show red underline
argumentsInColorFunction = "error" # Invalid number of parameters
boxModel = "ignore" # Do not use width or height when using padding or border
compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties"
duplicateProperties = "warning" # Do not use duplicate style definitions
emptyRules = "warning" # Do not use empty rulesets
float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.
fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties
hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers
idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML.
ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older
important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.
importStatement = "ignore" # Import statements do not load in parallel
propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display
universalSelector = "ignore" # The universal selector (*) is known to be slow
unknownAtRules = "warning" # Unknown at-rule
unknownProperties = "warning" # Unknown property.
validProperties = [ ] # add some properties that the linter doesn't know about
unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property.
vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property
zeroUnits = "ignore" # No unit for zero needed"
[gitHubImport]
requiredFiles = [".replit", "replit.nix", ".config"]

View file

@ -0,0 +1,323 @@
{"frames": {
"Car1FrameExploded0000":
{
"frame": {"x":135,"y":2,"w":117,"h":66},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":117,"h":66},
"sourceSize": {"w":117,"h":66}
},
"Car3FrameExploded0000":
{
"frame": {"x":2,"y":64,"w":129,"h":59},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":129,"h":59},
"sourceSize": {"w":129,"h":59}
},
"Car5FrameExploded0000":
{
"frame": {"x":2,"y":2,"w":131,"h":60},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":131,"h":60},
"sourceSize": {"w":131,"h":60}
},
"RocketAnim0000":
{
"frame": {"x":2,"y":182,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"RocketAnim0001":
{
"frame": {"x":2,"y":212,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"RocketAnim0002":
{
"frame": {"x":2,"y":242,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"RocketAnim0003":
{
"frame": {"x":2,"y":272,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"RocketAnim0004":
{
"frame": {"x":2,"y":302,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"RocketAnim0005":
{
"frame": {"x":2,"y":332,"w":128,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":128,"h":28},
"sourceSize": {"w":128,"h":28}
},
"Wheel_1_00000":
{
"frame": {"x":177,"y":230,"w":42,"h":41},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":42,"h":41},
"sourceSize": {"w":42,"h":41}
},
"Wheel_3_00000":
{
"frame": {"x":132,"y":226,"w":43,"h":43},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":43,"h":43},
"sourceSize": {"w":43,"h":43}
},
"Wheel_5_00000":
{
"frame": {"x":132,"y":271,"w":40,"h":39},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":40,"h":39},
"sourceSize": {"w":40,"h":39}
},
"bike_1_base0000":
{
"frame": {"x":2,"y":125,"w":110,"h":55},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":110,"h":55},
"sourceSize": {"w":110,"h":55}
},
"bike_3_base0000":
{
"frame": {"x":133,"y":70,"w":121,"h":56},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":121,"h":56},
"sourceSize": {"w":121,"h":56}
},
"bike_5_base0000":
{
"frame": {"x":114,"y":128,"w":106,"h":52},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":106,"h":52},
"sourceSize": {"w":106,"h":52}
},
"driver_arm10000":
{
"frame": {"x":2,"y":362,"w":20,"h":13},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":20,"h":13},
"sourceSize": {"w":20,"h":13}
},
"driver_arm30000":
{
"frame": {"x":132,"y":347,"w":22,"h":15},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":22,"h":15},
"sourceSize": {"w":22,"h":15}
},
"driver_arm50000":
{
"frame": {"x":226,"y":350,"w":23,"h":13},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":23,"h":13},
"sourceSize": {"w":23,"h":13}
},
"driver_corpse10000":
{
"frame": {"x":153,"y":312,"w":18,"h":33},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":18,"h":33},
"sourceSize": {"w":18,"h":33}
},
"driver_corpse30000":
{
"frame": {"x":221,"y":230,"w":22,"h":35},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":22,"h":35},
"sourceSize": {"w":22,"h":35}
},
"driver_corpse50000":
{
"frame": {"x":222,"y":128,"w":25,"h":36},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":25,"h":36},
"sourceSize": {"w":25,"h":36}
},
"driver_forearm10000":
{
"frame": {"x":24,"y":362,"w":22,"h":9},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":22,"h":9},
"sourceSize": {"w":22,"h":9}
},
"driver_forearm30000":
{
"frame": {"x":156,"y":357,"w":25,"h":11},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":25,"h":11},
"sourceSize": {"w":25,"h":11}
},
"driver_forearm50000":
{
"frame": {"x":233,"y":216,"w":21,"h":9},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":21,"h":9},
"sourceSize": {"w":21,"h":9}
},
"driver_head10000":
{
"frame": {"x":216,"y":273,"w":34,"h":27},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":34,"h":27},
"sourceSize": {"w":34,"h":27}
},
"driver_head30000":
{
"frame": {"x":174,"y":273,"w":40,"h":28},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":40,"h":28},
"sourceSize": {"w":40,"h":28}
},
"driver_head50000":
{
"frame": {"x":132,"y":182,"w":54,"h":42},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":54,"h":42},
"sourceSize": {"w":54,"h":42}
},
"driver_hip10000":
{
"frame": {"x":233,"y":202,"w":19,"h":12},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":19,"h":12},
"sourceSize": {"w":19,"h":12}
},
"driver_hip30000":
{
"frame": {"x":200,"y":350,"w":24,"h":13},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":24,"h":13},
"sourceSize": {"w":24,"h":13}
},
"driver_hip50000":
{
"frame": {"x":173,"y":321,"w":28,"h":18},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":28,"h":18},
"sourceSize": {"w":28,"h":18}
},
"driver_shin10000":
{
"frame": {"x":233,"y":166,"w":21,"h":34},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":21,"h":34},
"sourceSize": {"w":21,"h":34}
},
"driver_shin30000":
{
"frame": {"x":132,"y":312,"w":19,"h":32},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":19,"h":32},
"sourceSize": {"w":19,"h":32}
},
"driver_shin50000":
{
"frame": {"x":216,"y":302,"w":22,"h":29},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":22,"h":29},
"sourceSize": {"w":22,"h":29}
},
"suspend_back10000":
{
"frame": {"x":174,"y":303,"w":38,"h":16},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":38,"h":16},
"sourceSize": {"w":38,"h":16}
},
"suspend_back30000":
{
"frame": {"x":249,"y":128,"w":5,"h":5},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":5,"h":5},
"sourceSize": {"w":5,"h":5}
},
"suspend_back50000":
{
"frame": {"x":203,"y":333,"w":33,"h":15},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":33,"h":15},
"sourceSize": {"w":33,"h":15}
},
"suspend_front10000":
{
"frame": {"x":173,"y":341,"w":25,"h":14},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":25,"h":14},
"sourceSize": {"w":25,"h":14}
},
"suspend_front30000":
{
"frame": {"x":249,"y":135,"w":5,"h":5},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":5,"h":5},
"sourceSize": {"w":5,"h":5}
},
"suspend_front50000":
{
"frame": {"x":188,"y":182,"w":43,"h":46},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":43,"h":46},
"sourceSize": {"w":43,"h":46}
}},
"meta": {
"app": "Adobe Flash Professional",
"version": "15.0.1.179",
"image": "cars_game.png",
"format": "RGBA8888",
"size": {"w":256,"h":512},
"scale": "1"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View file

@ -0,0 +1,387 @@
{"frames": {
"0bg_garage0000":
{
"frame": {"x":2,"y":2,"w":720,"h":480},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":720,"h":480},
"sourceSize": {"w":720,"h":480}
},
"0bg_garage_l0000":
{
"frame": {"x":709,"y":890,"w":30,"h":480},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":30,"h":480},
"sourceSize": {"w":30,"h":480}
},
"0bg_garage_r0000":
{
"frame": {"x":741,"y":890,"w":30,"h":480},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":30,"h":480},
"sourceSize": {"w":30,"h":480}
},
"0logo0000":
{
"frame": {"x":2,"y":922,"w":337,"h":230},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":337,"h":230},
"sourceSize": {"w":337,"h":230}
},
"0popup_bg0000":
{
"frame": {"x":2,"y":484,"w":680,"h":436},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":680,"h":436},
"sourceSize": {"w":680,"h":436}
},
"InGameMusicButton0000":
{
"frame": {"x":959,"y":408,"w":53,"h":44},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":53,"h":44},
"sourceSize": {"w":53,"h":44}
},
"InGameMusicButton0001":
{
"frame": {"x":560,"y":1178,"w":53,"h":44},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":53,"h":44},
"sourceSize": {"w":53,"h":44}
},
"InGameMusicButton0002":
{
"frame": {"x":615,"y":1178,"w":53,"h":44},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":53,"h":44},
"sourceSize": {"w":53,"h":44}
},
"InGamePauseButton0000":
{
"frame": {"x":979,"y":936,"w":33,"h":49},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":33,"h":49},
"sourceSize": {"w":33,"h":49}
},
"LeveMapItemLocked0000":
{
"frame": {"x":341,"y":1097,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"LeveMapItemLocked0001":
{
"frame": {"x":406,"y":1097,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"LeveMapItemLocked0002":
{
"frame": {"x":471,"y":1097,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"LeveMapItemLocked0003":
{
"frame": {"x":536,"y":1097,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"LeveMapItemLocked0004":
{
"frame": {"x":601,"y":1097,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"LeveMapItemLocked0005":
{
"frame": {"x":773,"y":1127,"w":63,"h":79},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":63,"h":79},
"sourceSize": {"w":63,"h":79}
},
"apple_btn0000":
{
"frame": {"x":773,"y":1015,"w":180,"h":60},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":180,"h":60},
"sourceSize": {"w":180,"h":60}
},
"arrow_btn0000":
{
"frame": {"x":165,"y":1154,"w":54,"h":86},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":54,"h":86},
"sourceSize": {"w":54,"h":86}
},
"arrow_btn0001":
{
"frame": {"x":221,"y":1154,"w":54,"h":86},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":54,"h":86},
"sourceSize": {"w":54,"h":86}
},
"arrow_key0000":
{
"frame": {"x":838,"y":1127,"w":78,"h":63},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":78,"h":63},
"sourceSize": {"w":78,"h":63}
},
"arrow_key20000":
{
"frame": {"x":277,"y":1178,"w":83,"h":53},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":83,"h":53},
"sourceSize": {"w":83,"h":53}
},
"bg0000":
{
"frame": {"x":1012,"y":94,"w":10,"h":10},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":10,"h":10},
"sourceSize": {"w":10,"h":10}
},
"black0000":
{
"frame": {"x":666,"y":1097,"w":40,"h":40},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":40,"h":40},
"sourceSize": {"w":40,"h":40}
},
"branding_l0000":
{
"frame": {"x":724,"y":2,"w":287,"h":90},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":287,"h":90},
"sourceSize": {"w":287,"h":90}
},
"btn_body0000":
{
"frame": {"x":918,"y":228,"w":96,"h":96},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":96,"h":96},
"sourceSize": {"w":96,"h":96}
},
"btn_body0001":
{
"frame": {"x":918,"y":228,"w":96,"h":96},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":96,"h":96},
"sourceSize": {"w":96,"h":96}
},
"btn_credits0000":
{
"frame": {"x":955,"y":1015,"w":62,"h":60},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":62,"h":60},
"sourceSize": {"w":62,"h":60}
},
"exit_btn0000":
{
"frame": {"x":918,"y":326,"w":92,"h":80},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":92,"h":80},
"sourceSize": {"w":92,"h":80}
},
"fb_icon0000":
{
"frame": {"x":2,"y":1154,"w":70,"h":70},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":70,"h":70},
"sourceSize": {"w":70,"h":70}
},
"frame_space0000":
{
"frame": {"x":341,"y":922,"w":366,"h":88},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":366,"h":88},
"sourceSize": {"w":366,"h":88}
},
"google_btn0000":
{
"frame": {"x":773,"y":953,"w":203,"h":60},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":203,"h":60},
"sourceSize": {"w":203,"h":60}
},
"improved_bg0000":
{
"frame": {"x":724,"y":94,"w":153,"h":136},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":153,"h":136},
"sourceSize": {"w":153,"h":136}
},
"logo_mad0000":
{
"frame": {"x":684,"y":484,"w":305,"h":404},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":305,"h":404},
"sourceSize": {"w":305,"h":404}
},
"next_btn0000":
{
"frame": {"x":943,"y":1077,"w":77,"h":76},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":77,"h":76},
"sourceSize": {"w":77,"h":76}
},
"orange_btn0000":
{
"frame": {"x":724,"y":232,"w":192,"h":99},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":192,"h":99},
"sourceSize": {"w":192,"h":99}
},
"orange_btn_big0000":
{
"frame": {"x":341,"y":1012,"w":327,"h":83},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":327,"h":83},
"sourceSize": {"w":327,"h":83}
},
"pause_bg0000":
{
"frame": {"x":74,"y":1154,"w":89,"h":54},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":89,"h":54},
"sourceSize": {"w":89,"h":54}
},
"play_btn0000":
{
"frame": {"x":496,"y":1178,"w":62,"h":65},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":62,"h":65},
"sourceSize": {"w":62,"h":65}
},
"restart_btn0000":
{
"frame": {"x":863,"y":333,"w":45,"h":52},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":45,"h":52},
"sourceSize": {"w":45,"h":52}
},
"select_level0000":
{
"frame": {"x":863,"y":408,"w":94,"h":70},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":94,"h":70},
"sourceSize": {"w":94,"h":70}
},
"shop_btn0000":
{
"frame": {"x":918,"y":1155,"w":78,"h":57},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":78,"h":57},
"sourceSize": {"w":78,"h":57}
},
"star00000":
{
"frame": {"x":724,"y":333,"w":137,"h":138},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":137,"h":138},
"sourceSize": {"w":137,"h":138}
},
"star10000":
{
"frame": {"x":879,"y":94,"w":131,"h":132},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":131,"h":132},
"sourceSize": {"w":131,"h":132}
},
"timer_bg0000":
{
"frame": {"x":773,"y":1077,"w":168,"h":48},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":168,"h":48},
"sourceSize": {"w":168,"h":48}
},
"top_bg0000":
{
"frame": {"x":773,"y":890,"w":204,"h":61},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":204,"h":61},
"sourceSize": {"w":204,"h":61}
},
"tw_icon0000":
{
"frame": {"x":362,"y":1178,"w":65,"h":65},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":65,"h":65},
"sourceSize": {"w":65,"h":65}
},
"vk_icon0000":
{
"frame": {"x":429,"y":1178,"w":65,"h":65},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":65,"h":65},
"sourceSize": {"w":65,"h":65}
},
"w_star0000":
{
"frame": {"x":979,"y":890,"w":40,"h":44},
"rotated": false,
"trimmed": false,
"spriteSourceSize": {"x":0,"y":0,"w":40,"h":44},
"sourceSize": {"w":40,"h":44}
}},
"meta": {
"app": "Adobe Flash Professional",
"version": "15.0.1.179",
"image": "garage.png",
"format": "RGBA8888",
"size": {"w":1024,"h":2048},
"scale": "1"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,004 KiB

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 KiB

1
assets/box2dweb/dragonBones.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
assets/box2dweb/nape.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,9 @@
@font-face {
font-family:"Aller Display";
src: url("../fonts/AllerDisplay/AllerDisplay.eot?") format("eot"),
url("../fonts/AllerDisplay/AllerDisplay.woff") format("woff"),
url("../fonts/AllerDisplay/AllerDisplay.ttf") format("truetype"),
url("../fonts/AllerDisplay/AllerDisplay.svg#AllerDisplay") format("svg");
font-weight:normal;
font-style:normal;
}

View file

@ -0,0 +1,9 @@
@font-face {
font-family:"CfCrackBold";
src: url("../fonts/CfCrackBold/cfcrackandbold.eot?") format("eot"),
url("../fonts/CfCrackBold/cfcrackandbold.woff") format("woff"),
url("../fonts/CfCrackBold/cfcrackandbold.ttf") format("truetype"),
url("../fonts/CfCrackBold/cfcrackandbold.svg#cfcrackandbold") format("svg");
font-weight:normal;
font-style:normal;
}

84
assets/css/app.css Normal file
View file

@ -0,0 +1,84 @@
/*Stylesheet*/
body, html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
margin: 0;
padding: 0;
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
font-weight: normal;
color: #ccc;
background-color: #000000;
overflow: hidden;
}
#orientation {
margin: 0 auto;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(../images/rotate.png);
background-repeat: no-repeat;
background-position: center;
background-color: rgb(0, 0, 0);
background-size: 25%;
z-index: 999;
display: none;
}
#loader {
width: 100%;
height: 50px;
position: absolute;
text-align: center;
margin-top: 250px;
display: block;
}
#loader,
#loader:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
#loader {
margin: 60px auto;
font-size: 10px;
position: absolute;
z-index: 99;
left: 50%;
top: 50%;
margin-left: -5em;
margin-top: -5em;
text-indent: -9999em;
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
border-left: 1.1em solid #ffffff;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load8 1.1s infinite linear;
animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}

9
assets/css/impact.css Normal file
View file

@ -0,0 +1,9 @@
@font-face {
font-family:"Impact";
src: url("../fonts/Impact/impact.eot?") format("eot"),
url("../fonts/Impact/impact.woff") format("woff"),
url("../fonts/Impact/impact.ttf") format("truetype"),
url("../fonts/Impact/impact.svg#impact") format("svg");
font-weight:normal;
font-style:normal;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

1
assets/levels/1.json Normal file
View file

@ -0,0 +1 @@
{"maxSpeed":700,"maxTorque":600000,"torque":400000,"handlingPct":0,"bodyDensity":1,"weapon":0,"boostValue":0,"bodyMassType":1,"health":0,"wheelFrictionPct":0,"bodyW":96,"wheelRadiusValue":0,"bodyH":24,"engineCount":3,"handlingCount":3,"boostCount":3,"wheelBackDensity":1,"wheelBackFriction":6,"wheelFrontDensity":3,"wheelFrontFriction":5,"wheelsCount":3,"baseHealth":2700,"healthCount":3,"healthValue":900,"wheelBackR":19,"wheelFrontR":19,"wheelBackDx":34,"wheelFrontDx":45,"axisBackY":13,"driverDensity":1,"axisFrontY":13,"wd":0,"axisBackLen":14,"driverW":32,"flipTorque":200000,"axisFrontLen":14,"driverH":32,"maxFlipSpeed":0.2,"damperBackY":12,"boostForce":0,"damperFrontY":12,"damperBackLen":12,"damperFrontLen":12,"driverDy":-16,"skinId":1,"damperBackFreq":5,"maxSpeedPct":2,"damperFrontFreq":5,"torquePct":5,"damperBackDamp":0,"damperFrontDamp":0,"driverDx":45,"axisBackAngle":1.5707963267948966,"axisFrontAngle":1.0995574287564276,"wheels":0}

1
assets/levels/bike.json Normal file
View file

@ -0,0 +1 @@
{"forearm_joint":{"y":-35.15,"x":0.85},"driver_hip":{"r":0.5235966450694268,"h":9.1,"x":-7.4,"y":-18.5,"w":13.1},"firepoint":{"r":0,"x":-29.8,"y":-8.65},"driver_shin":{"r":0.05238118284855052,"h":31.2,"x":-1.8,"y":-2.7,"w":9.1},"hip_joint":{"y":-15,"x":-3},"arm_joint":{"y":-43.65,"x":-7.75},"shin_joint":{"y":10,"x":-1},"top":[],"corpse_joint":{"y":-23.2,"x":-11},"steer_joint":{"y":-30.5,"x":16.05},"driver_arm":{"r":0.785390440230287,"h":10.1,"x":-4.25,"y":-39.4,"w":16.1},"suspend_back":{"y":12,"x":-6},"driver_corpse":{"r":0.274591615779236,"h":30.2,"x":-8.35,"y":-33.75,"w":14.1},"suspend_front":{},"driver_forearm":{"r":0.19200219668591673,"h":6,"x":8.8,"y":-33.35,"w":19.1},"driver_head":{"r":0.2617948604252963,"h":23.1,"x":-1.8,"y":-59.5,"w":25.2},"suspend_back_w":28.1,"points":[{"y":6.75,"x":-12.45},{"y":-17,"x":-40.1},{"y":-28.5,"x":23.5},{"y":8.85,"x":15.8}],"rect":{"height":133.2,"x":-69,"y":-95,"width":155.2,"top":-95,"size":{"x":155.2,"y":133.2,"length":204.52207704793142},"topLeft":{"x":-69,"y":-95,"length":117.41379816699569},"bottom":38.19999999999999,"bottomRight":{"x":86.19999999999999,"y":38.19999999999999,"length":94.28509956509563},"right":86.19999999999999,"left":-69},"head_joint":{"y":-48.5,"x":-5.6}}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
{"name":"bikes","imagePath":"bikes_texture.png","SubTexture":[{"name":"base","x":0,"height":55,"width":120,"y":0},{"name":"driver_corpse","x":228,"height":33,"width":20,"y":0},{"name":"drive_hip","x":33,"height":12,"width":22,"y":130},{"name":"driver_shin","x":102,"height":30,"width":18,"y":56},{"name":"driver_arm","x":150,"height":13,"width":20,"y":134},{"name":"driver_forearm","x":0,"height":9,"width":23,"y":138},{"name":"driver_head","x":178,"height":43,"width":48,"y":52},{"name":"wheel","x":58,"height":42,"width":42,"y":56},{"name":"dust1","x":205,"height":12,"width":14,"y":138},{"name":"dust2","x":102,"height":16,"width":18,"y":87},{"name":"dust3","x":33,"height":20,"width":24,"y":109},{"name":"dust4","x":94,"height":23,"width":26,"y":104},{"name":"dust5","x":151,"height":24,"width":26,"y":109},{"name":"dust6","x":218,"height":24,"width":26,"y":113},{"name":"dust7","x":227,"height":22,"width":28,"y":60},{"name":"dust8","x":121,"height":21,"width":29,"y":109},{"name":"dust9","x":118,"height":16,"width":31,"y":131},{"name":"dust10","x":218,"height":8,"width":7,"y":96},{"name":"wheel1","x":178,"height":39,"width":39,"y":96},{"name":"suspend_front","x":121,"height":56,"width":56,"y":52},{"name":"supend_back","x":171,"height":14,"width":33,"y":136},{"name":"base1","x":121,"height":51,"width":106,"y":0},{"name":"drive_hip1","x":0,"height":28,"width":32,"y":109},{"name":"driver_corpse1","x":58,"height":40,"width":35,"y":99},{"name":"driver_shin1","x":227,"height":29,"width":21,"y":83},{"name":"driver_arm1","x":228,"height":25,"width":25,"y":34},{"name":"driver_forearm1","x":94,"height":14,"width":23,"y":128},{"name":"driver_head1","x":0,"height":52,"width":57,"y":56}]}

1
assets/levels/map1.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map10.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map11.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map12.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map13.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map14.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map15.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map16.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map17.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map18.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map19.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map2.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map20.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map21.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map22.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map23.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map24.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map25.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map3.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map4.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map5.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map6.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map7.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map8.json Normal file

File diff suppressed because one or more lines are too long

1
assets/levels/map9.json Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
{"imagePath":"menu_texture.png","name":"menu anim","SubTexture":[{"height":274,"name":"back-123123","x":0,"y":0,"width":666},{"height":289,"name":"ass","x":667,"y":0,"width":284},{"height":46,"name":"bike_body_01","x":0,"y":275,"width":86},{"height":28,"name":"body-01","x":997,"y":32,"width":18},{"height":11,"name":"leg_01","x":997,"y":70,"width":18},{"height":31,"name":"leg_02","x":997,"y":0,"width":16},{"height":14,"name":"hand_01","x":997,"y":82,"width":15},{"height":8,"name":"hand)92","x":997,"y":61,"width":21},{"height":29,"name":"head","x":953,"y":88,"width":34},{"height":43,"name":"moto_wheel_01","x":953,"y":44,"width":43},{"height":43,"name":"moto_wheel_01 copy","x":953,"y":0,"width":43}]}

491
assets/levels/objects.json Normal file
View file

@ -0,0 +1,491 @@
{
"point1": {
"x": 40,
"y": 233
},
"point24": {
"x": 672,
"y": 192
},
"point23": {
"x": 672,
"y": 107
},
"point18": {
"x": 502,
"y": 188
},
"point17": {
"x": 487,
"y": 99
},
"point16": {
"x": 399,
"y": 75
},
"point8": {
"x": 276,
"y": 317
},
"point20": {
"x": 643,
"y": 325
},
"point19": {
"x": 564,
"y": 330
},
"point15": {
"x": 425,
"y": 301
},
"point13": {
"x": 348,
"y": 317
},
"point14": {
"x": 462,
"y": 374
},
"point21": {
"x": 581,
"y": 196
},
"point22": {
"x": 550,
"y": 99
},
"point12": {
"x": 356,
"y": 216
},
"point11": {
"x": 333,
"y": 117
},
"point10": {
"x": 262,
"y": 40
},
"point9": {
"x": 271,
"y": 188
},
"point7": {
"x": 199,
"y": 360
},
"point6": {
"x": 208,
"y": 251
},
"point5": {
"x": 183,
"y": 127
},
"point4": {
"x": 105,
"y": 90
},
"point3": {
"x": 128,
"y": 216
},
"point2": {
"x": 92,
"y": 360
},
"point0": {
"x": 49,
"y": 141
},
"bike1": {
"driver_head": {
"x": -1.8,
"y": -59.5,
"r": 14.998931884765625,
"g": "driver_head1"
},
"driver_forearm": {
"x": 8.8,
"y": -33.35,
"r": 11.00091552734375,
"g": "driver_forearm1"
},
"driver_arm": {
"x": -4.25,
"y": -39.4,
"r": 44.99913024902344,
"g": "driver_arm1"
},
"driver_shin": {
"x": -1.8,
"y": -2.7,
"r": 3.0003509521484375,
"g": "driver_shin1"
},
"driver_hip": {
"x": -7.4,
"y": -18.5,
"r": 29.9998779296875,
"g": "driver_hip1"
},
"driver_corpse": {
"x": -8.35,
"y": -33.75,
"r": 15.732131958007812,
"g": "driver_corpse1"
},
"suspend_front": {
"x": 46,
"y": 16,
"r": 63.00018310546875,
"g": "suspend_front1"
},
"base": {
"x": 0,
"y": 0,
"r": 0,
"g": "bike_1_base"
},
"suspend_back": {
"x": -6,
"y": 12,
"r": 169.69569396972656,
"g": "suspend_back1"
},
"Wheel0": {
"x": -35,
"y": 17,
"r": 0,
"g": "Wheel_1_0"
},
"Wheel1": {
"x": 44,
"y": 17,
"r": 0,
"g": "Wheel_1_0"
}
},
"bike3": {
"driver_head": {
"x": -1.8,
"y": -59.5,
"r": 14.998931884765625,
"g": "driver_head3"
},
"driver_forearm": {
"x": 8.8,
"y": -33.35,
"r": 11.00091552734375,
"g": "driver_forearm3"
},
"driver_arm": {
"x": -4.25,
"y": -39.4,
"r": 44.99913024902344,
"g": "driver_arm3"
},
"driver_shin": {
"x": -1.8,
"y": -2.7,
"r": 3.0003509521484375,
"g": "driver_shin3"
},
"driver_hip": {
"x": -7.4,
"y": -18.5,
"r": 29.9998779296875,
"g": "driver_hip3"
},
"driver_corpse": {
"x": -8.35,
"y": -33.75,
"r": 15.732131958007812,
"g": "driver_corpse3"
},
"suspend_front": {
"x": 46,
"y": 16,
"r": 63.00018310546875,
"g": "suspend_front3"
},
"base": {
"x": 0,
"y": 0,
"r": 0,
"g": "bike_3_base"
},
"suspend_back": {
"x": -6,
"y": 12,
"r": 169.69569396972656,
"g": "suspend_back3"
},
"Wheel0": {
"x": -34,
"y": 17,
"r": 0,
"g": "Wheel_3_0"
},
"Wheel1": {
"x": 46,
"y": 16,
"r": 0,
"g": "Wheel_3_0"
}
},
"bike5": {
"driver_head": {
"x": -1.8,
"y": -59.5,
"r": 14.998931884765625,
"g": "driver_head5"
},
"driver_forearm": {
"x": 8.8,
"y": -33.35,
"r": 11.00091552734375,
"g": "driver_forearm5"
},
"driver_arm": {
"x": -4.25,
"y": -39.4,
"r": 44.99913024902344,
"g": "driver_arm5"
},
"driver_shin": {
"x": -1.8,
"y": -2.7,
"r": 3.0003509521484375,
"g": "driver_shin5"
},
"driver_hip": {
"x": -7.4,
"y": -18.5,
"r": 29.9998779296875,
"g": "driver_hip5"
},
"driver_corpse": {
"x": -8.35,
"y": -33.75,
"r": 15.732131958007812,
"g": "driver_corpse5"
},
"suspend_front": {
"x": 46,
"y": 16,
"r": 63.00018310546875,
"g": "suspend_front5"
},
"base": {
"x": 0,
"y": 0,
"r": 0,
"g": "bike_5_base"
},
"suspend_back": {
"x": -6,
"y": 12,
"r": 169.69569396972656,
"g": "suspend_back5"
},
"Wheel0": {
"x": -34,
"y": 17,
"r": 0,
"g": "Wheel_5_0"
},
"Wheel1": {
"x": 47,
"y": 17,
"r": 0,
"g": "Wheel_5_0"
}
},
"bike11": {
"driver_head": {
"x": 20.1,
"y": -56.55,
"r": 47.00189208984375,
"g": "driver_head1"
},
"driver_forearm": {
"x": 19,
"y": -31.5,
"r": 25.82525634765625,
"g": "driver_forearm1"
},
"driver_arm": {
"x": 7.9,
"y": -40.7,
"r": 59.82405090332031,
"g": "driver_arm1"
},
"driver_shin": {
"x": -34.45,
"y": -48.55,
"r": 117.83747863769531,
"g": "driver_shin1"
},
"driver_hip": {
"x": -17.8,
"y": -47.95,
"r": 144.83595275878906,
"g": "driver_hip1"
},
"driver_corpse": {
"x": -1.15,
"y": -46.8,
"r": 100.73109436035156,
"g": "driver_corpse1"
},
"suspend_front": {
"x": 40.35,
"y": 26.75,
"r": 78.82647705078125,
"g": "suspend_front1"
},
"base": {
"x": 0.5,
"y": -1.2,
"r": 15.826858520507812,
"g": "bike_1_base"
},
"suspend_back": {
"x": -8.5,
"y": 8.7,
"r": -174.4778289794922,
"g": "suspend_back1"
},
"Wheel0": {
"x": -37.8,
"y": 5.6,
"r": 15.826858520507812,
"g": "Wheel_1_0"
},
"Wheel1": {
"x": 38.15,
"y": 27.15,
"r": 15.826858520507812,
"g": "Wheel_1_0"
}
},
"Plank0": {
"shape": "rect",
"h": 17.3,
"w": 71.1
},
"PlankBone": {
"shape": "rect",
"h": 12,
"w": 85
},
"PlankCandy": {
"shape": "rect",
"h": 18,
"w": 85
},
"Tnt1": {
"h": 52.8,
"shape": "rect",
"w": 52.8
},
"EggE": {
"h": 44,
"shape": "circ",
"w": 44
},
"BarrelE": {
"h": 52.1,
"shape": "circ",
"w": 52.1
},
"SpikesE": {
"h": 29.5,
"shape": "rect",
"w": 116.8
},
"Removed0": {
"h": 70.1,
"shape": "rect",
"w": 10.2
},
"Removed1": {
"h": 47.7,
"shape": "rect",
"w": 10.2
},
"Glass0": {
"w": 64,
"shape": "rect",
"h": 16
},
"Glass1": {
"w": 128,
"shape": "rect",
"h": 16
},
"GlassCrashed0": {
"w": 128,
"shape": "rect",
"h": 16,
"pts": [
{
"x": -47,
"y": -6
},
{
"x": -35,
"y": 2
},
{
"x": 13,
"y": 2
},
{
"x": 48,
"y": 2
},
{
"x": 47,
"y": -4
},
{
"x": 4,
"y": -4
}
]
},
"GlassCrashed1": {
"w": 64,
"shape": "rect",
"h": 16,
"pts": [
{
"x": -23,
"y": -6
},
{
"x": -17,
"y": 2
},
{
"x": 7,
"y": 2
},
{
"x": 25,
"y": 2
},
{
"x": 24,
"y": -4
},
{
"x": 3,
"y": -4
}
]
}
}

BIN
assets/sound/accel01.ogg Normal file

Binary file not shown.

BIN
assets/sound/accel02.ogg Normal file

Binary file not shown.

BIN
assets/sound/accel03.ogg Normal file

Binary file not shown.

BIN
assets/sound/accel04.ogg Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/sound/boost.ogg Normal file

Binary file not shown.

BIN
assets/sound/button.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_01.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_02.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_03.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_04.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_05.ogg Normal file

Binary file not shown.

BIN
assets/sound/dead_06.ogg Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/sound/eng_loop.ogg Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/sound/explode1.ogg Normal file

Binary file not shown.

BIN
assets/sound/explode2.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_01.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_02.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_03.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_04.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_05.ogg Normal file

Binary file not shown.

BIN
assets/sound/flip_06.ogg Normal file

Binary file not shown.

BIN
assets/sound/fly_01.ogg Normal file

Binary file not shown.

BIN
assets/sound/fly_02.ogg Normal file

Binary file not shown.

BIN
assets/sound/fly_03.ogg Normal file

Binary file not shown.

BIN
assets/sound/game_track.ogg Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/sound/landing.ogg Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/sound/motor.ogg Normal file

Binary file not shown.

BIN
assets/sound/safepoint.ogg Normal file

Binary file not shown.

BIN
assets/sound/stones.ogg Normal file

Binary file not shown.

BIN
assets/sound/wendy.ogg Normal file

Binary file not shown.

BIN
assets/sound/wood_hit0.ogg Normal file

Binary file not shown.

BIN
download.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

19
index.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>MotoX3M Winter</title>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" />
<link rel="stylesheet" href="assets/css/app.css" type="text/css" />
<link rel="shortcut icon" href="download.jpeg">
<link rel="icon" href="download.jpeg">
</head>
<body>
<script type="text/javascript" src="assets/box2dweb/nape.min.js">
var nape = "nape.min.js";
</script>
<script type="text/javascript" src="motox3m.min.js"></script>
<script type="text/javascript" src="/js/main.js"></script>
</body>
</html>

778
motox3m.min.js vendored Normal file

File diff suppressed because one or more lines are too long

6
replit.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs }: {
deps = [
pkgs.nodePackages.vscode-langservers-extracted
pkgs.nodePackages.typescript-language-server
];
}