diff --git a/.travis.yml b/.travis.yml index 55dcc33c0bdc6003ceff02e9d360902a915d87e2..39b09b7fa9fbfee710336183c26ae1f1326c8bc4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,9 @@ deploy: script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git - provider: npm on: - branch: master + branch: + - master + - develop skip_cleanup: true email: $NPM_EMAIL api_key: $NPM_TOKEN diff --git a/package.json b/package.json index 2a5e742a78ea9d08a2edee82fc5fef431ae86224..ce6ce185444ed97e7159d3faf022eb979c231ad7 100644 --- a/package.json +++ b/package.json @@ -90,9 +90,9 @@ "redux-throttle": "0.1.1", "rimraf": "^2.6.1", "scratch-audio": "0.1.0-prerelease.1523977528", - "scratch-blocks": "0.1.0-prerelease.1526329848", + "scratch-blocks": "0.1.0-prerelease.1526507753", "scratch-l10n": "2.0.20180108132626", - "scratch-paint": "0.2.0-prerelease.20180514184134", + "scratch-paint": "0.2.0-prerelease.20180517194052", "scratch-render": "0.1.0-prerelease.20180514172756", "scratch-storage": "0.4.1", "scratch-svg-renderer": "0.1.0-prerelease.20180514170126", diff --git a/src/components/monitor-list/monitor-list.css b/src/components/monitor-list/monitor-list.css index 6ee78ce05ed030cfce98c4331f0c56f3905d70a9..272fb28a66dbed2c3655585faf3b8fb70a56bda7 100644 --- a/src/components/monitor-list/monitor-list.css +++ b/src/components/monitor-list/monitor-list.css @@ -1,5 +1,10 @@ .monitor-list { - width: 100%; - height: 100%; + /* Width/height are set by the component, margin: auto centers in fullscreen */ + margin: auto; pointer-events: none; } + +.monitor-list-scaler { + /* Scaling for monitors should happen from the top left */ + transform-origin: left top; +} diff --git a/src/components/monitor-list/monitor-list.jsx b/src/components/monitor-list/monitor-list.jsx index 07b6a817be90020956891f340b73a344f5b21afd..2af0a8fb84149c335b7e6e57120cf54b3e64619f 100644 --- a/src/components/monitor-list/monitor-list.jsx +++ b/src/components/monitor-list/monitor-list.jsx @@ -7,37 +7,62 @@ import {OrderedMap} from 'immutable'; import styles from './monitor-list.css'; +const stageSizeToTransform = ({width, height, widthDefault, heightDefault}) => { + const scaleX = width / widthDefault; + const scaleY = height / heightDefault; + return `scale(${scaleX},${scaleY})`; +}; + const MonitorList = props => ( <Box // Use static `monitor-overlay` class for bounds of draggables className={classNames(styles.monitorList, 'monitor-overlay')} + style={{ + width: props.stageSize.width, + height: props.stageSize.height + }} > - {props.monitors.valueSeq().filter(m => m.visible) - .map(monitorData => ( - <Monitor - height={monitorData.height} - id={monitorData.id} - key={monitorData.id} - max={monitorData.sliderMax} - min={monitorData.sliderMin} - mode={monitorData.mode} - opcode={monitorData.opcode} - params={monitorData.params} - spriteName={monitorData.spriteName} - targetId={monitorData.targetId} - value={monitorData.value} - width={monitorData.width} - x={monitorData.x} - y={monitorData.y} - onDragEnd={props.onMonitorChange} - /> - ))} + <Box + className={styles.monitorListScaler} + style={{ + transform: stageSizeToTransform(props.stageSize) + }} + > + {props.monitors.valueSeq().filter(m => m.visible) + .map(monitorData => ( + <Monitor + draggable={props.draggable} + height={monitorData.height} + id={monitorData.id} + key={monitorData.id} + max={monitorData.sliderMax} + min={monitorData.sliderMin} + mode={monitorData.mode} + opcode={monitorData.opcode} + params={monitorData.params} + spriteName={monitorData.spriteName} + targetId={monitorData.targetId} + value={monitorData.value} + width={monitorData.width} + x={monitorData.x} + y={monitorData.y} + onDragEnd={props.onMonitorChange} + /> + ))} + </Box> </Box> ); MonitorList.propTypes = { + draggable: PropTypes.bool.isRequired, monitors: PropTypes.instanceOf(OrderedMap), - onMonitorChange: PropTypes.func.isRequired + onMonitorChange: PropTypes.func.isRequired, + stageSize: PropTypes.shape({ + width: PropTypes.number, + height: PropTypes.number, + widthDefault: PropTypes.number, + heightDefault: PropTypes.number + }).isRequired }; export default MonitorList; diff --git a/src/components/monitor/list-monitor-scroller.jsx b/src/components/monitor/list-monitor-scroller.jsx index fd6da9babbef90a2d491e51dca96968b67461c62..a62c0c0e2ae7aa2279a00205071af853a222d34b 100644 --- a/src/components/monitor/list-monitor-scroller.jsx +++ b/src/components/monitor/list-monitor-scroller.jsx @@ -20,7 +20,7 @@ class ListMonitorScroller extends React.Component { } noRowsRenderer () { return ( - <div className={styles.listEmpty}> + <div className={classNames(styles.listRow, styles.listEmpty)}> {'(empty)' /* TODO waiting for design before translation */} </div> ); @@ -37,9 +37,9 @@ class ListMonitorScroller extends React.Component { className={styles.listValue} dataIndex={index} style={{background: this.props.categoryColor}} - onClick={this.handleEventFactory(index)} + onClick={this.props.draggable ? this.handleEventFactory(index) : null} > - {this.props.activeIndex === index ? ( + {this.props.draggable && this.props.activeIndex === index ? ( <div className={styles.inputWrapper}> <input autoFocus @@ -93,6 +93,7 @@ ListMonitorScroller.propTypes = { activeIndex: PropTypes.number, activeValue: PropTypes.string, categoryColor: PropTypes.string, + draggable: PropTypes.bool, height: PropTypes.number, onActivate: PropTypes.func, onDeactivate: PropTypes.func, diff --git a/src/components/monitor/list-monitor.jsx b/src/components/monitor/list-monitor.jsx index a29afa283a395da93256321e30df72cd5e379dd9..c541980559124e24be7d8b01d30fb53be176315d 100644 --- a/src/components/monitor/list-monitor.jsx +++ b/src/components/monitor/list-monitor.jsx @@ -4,7 +4,7 @@ import classNames from 'classnames'; import styles from './monitor.css'; import ListMonitorScroller from './list-monitor-scroller.jsx'; -const ListMonitor = ({label, width, height, value, onResizeMouseDown, onAdd, ...rowProps}) => ( +const ListMonitor = ({draggable, label, width, height, value, onResizeMouseDown, onAdd, ...rowProps}) => ( <div className={styles.listMonitor} style={{ @@ -17,6 +17,7 @@ const ListMonitor = ({label, width, height, value, onResizeMouseDown, onAdd, ... </div> <div className={styles.listBody}> <ListMonitorScroller + draggable={draggable} height={height} values={value} width={width} @@ -26,7 +27,7 @@ const ListMonitor = ({label, width, height, value, onResizeMouseDown, onAdd, ... <div className={styles.listFooter}> <div className={styles.addButton} - onClick={onAdd} + onClick={draggable ? onAdd : null} > {'+' /* TODO waiting on asset */} </div> @@ -35,7 +36,7 @@ const ListMonitor = ({label, width, height, value, onResizeMouseDown, onAdd, ... </div> <div className={classNames(styles.resizeHandle, 'no-drag')} - onMouseDown={onResizeMouseDown} + onMouseDown={draggable ? onResizeMouseDown : null} > {'=' /* TODO waiting on asset */} </div> @@ -46,6 +47,7 @@ const ListMonitor = ({label, width, height, value, onResizeMouseDown, onAdd, ... ListMonitor.propTypes = { activeIndex: PropTypes.number, categoryColor: PropTypes.string.isRequired, + draggable: PropTypes.bool.isRequired, height: PropTypes.number, label: PropTypes.string.isRequired, onActivate: PropTypes.func, diff --git a/src/components/monitor/monitor.css b/src/components/monitor/monitor.css index 348f11e0cdee8f91d279438f12c6a2a3548573bc..c8b7f3108796331a93df8090ccb0c507289782e0 100644 --- a/src/components/monitor/monitor.css +++ b/src/components/monitor/monitor.css @@ -93,6 +93,7 @@ align-items: center; padding: 2px; flex-shrink: 0; + transform: translateZ(0); /* Keep sharp when scaled */ } .list-index { @@ -137,6 +138,8 @@ .value-inner { padding: 3px 5px; min-height: 22px; + overflow: hidden; /* Don't let long values escape container */ + user-select: text; /* Allow selecting list values for 2.0 compatibility, only relevant in player */ } .list-input { diff --git a/src/components/monitor/monitor.jsx b/src/components/monitor/monitor.jsx index a45fe52142a26090245023d4e558b720fd3d95cb..c11034b29b3801a8899187c84b36b90fbc5467e9 100644 --- a/src/components/monitor/monitor.jsx +++ b/src/components/monitor/monitor.jsx @@ -37,6 +37,7 @@ const MonitorComponent = props => ( bounds=".monitor-overlay" // Class for monitor container cancel=".no-drag" // Class used for slider input to prevent drag defaultClassNameDragging={styles.dragging} + disabled={!props.draggable} onStop={props.onDragEnd} > <Box @@ -88,6 +89,7 @@ const monitorModes = Object.keys(modes); MonitorComponent.propTypes = { category: PropTypes.oneOf(Object.keys(categories)), componentRef: PropTypes.func.isRequired, + draggable: PropTypes.bool.isRequired, label: PropTypes.string.isRequired, mode: PropTypes.oneOf(monitorModes), onDragEnd: PropTypes.func.isRequired, diff --git a/src/components/stage/stage.jsx b/src/components/stage/stage.jsx index 37f12706b0cc0de16bb334dc1fc7f8b8d6e8d5d4..658114a608a69757c746b3f64da2ac43c6ce1ad3 100644 --- a/src/components/stage/stage.jsx +++ b/src/components/stage/stage.jsx @@ -21,6 +21,7 @@ const StageComponent = props => { onDeactivateColorPicker, question, onQuestionAnswered, + useEditorDragStyle, ...boxProps } = props; @@ -47,7 +48,10 @@ const StageComponent = props => { {...boxProps} /> <Box className={styles.monitorWrapper}> - <MonitorList /> + <MonitorList + draggable={useEditorDragStyle} + stageSize={stageSize} + /> </Box> {isColorPicking && colorInfo ? ( <Box className={styles.colorPickerWrapper}> @@ -98,6 +102,7 @@ StageComponent.propTypes = { onDeactivateColorPicker: PropTypes.func, onQuestionAnswered: PropTypes.func, question: PropTypes.string, + useEditorDragStyle: PropTypes.bool, width: PropTypes.number }; StageComponent.defaultProps = { diff --git a/src/containers/monitor.jsx b/src/containers/monitor.jsx index b2480a41299ed592a11a0fa115eea292ba81c6fb..fd7a584adff0a78f9f74eaef217b22c4b2b235f0 100644 --- a/src/containers/monitor.jsx +++ b/src/containers/monitor.jsx @@ -103,6 +103,7 @@ class Monitor extends React.Component { <MonitorComponent componentRef={this.setElement} {...monitorProps} + draggable={this.props.draggable} height={this.props.height} max={this.props.max} min={this.props.min} @@ -121,6 +122,7 @@ class Monitor extends React.Component { Monitor.propTypes = { addMonitorRect: PropTypes.func.isRequired, + draggable: PropTypes.bool, height: PropTypes.number, id: PropTypes.string.isRequired, max: PropTypes.number, diff --git a/src/containers/stage.jsx b/src/containers/stage.jsx index ee3154a2207aa8769815a78950044a6ec2cbf768..b66efa2c5090ec70fb54f0c1a73340ea41a7aa66 100644 --- a/src/containers/stage.jsx +++ b/src/containers/stage.jsx @@ -363,7 +363,6 @@ class Stage extends React.Component { const { vm, // eslint-disable-line no-unused-vars onActivateColorPicker, // eslint-disable-line no-unused-vars - useEditorDragStyle, // eslint-disable-line no-unused-vars ...props } = this.props; return ( diff --git a/src/lib/libraries/backdrops.json b/src/lib/libraries/backdrops.json index 1f9cd8960e47bf568793791881239c14e89e46ae..6c76f324e9be91b5f5fe33e2dd986eb52e86f3a4 100644 --- a/src/lib/libraries/backdrops.json +++ b/src/lib/libraries/backdrops.json @@ -238,19 +238,6 @@ 1 ] }, - { - "name": "Winter-lights", - "md5": "381f471693238611a1b54da4e771637a.svg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, { "name": "Witch House", "md5": "597b9a9813fe5d8d387283138a0b8f2b.svg", diff --git a/src/lib/libraries/costumes.json b/src/lib/libraries/costumes.json index fda03b6e24d1d2732830eac5c0e6b6107f30bc9a..74ca965d83ccb75b2438b87b9ce834ee8a395214 100644 --- a/src/lib/libraries/costumes.json +++ b/src/lib/libraries/costumes.json @@ -98,6 +98,72 @@ 1 ] }, + { + "name": "Avery Walking-a", + "md5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "type": "costume", + "tags": [], + "info": [ + 50, + 95, + 1 + ] + }, + { + "name": "Avery Walking-b", + "md5": "c295731e8666ad2e1575fb4b4f82988d.svg", + "type": "costume", + "tags": [], + "info": [ + 50, + 102, + 1 + ] + }, + { + "name": "Avery Walking-c", + "md5": "597a834225c9949e419dff7db1bc2453.svg", + "type": "costume", + "tags": [], + "info": [ + 48, + 95, + 1 + ] + }, + { + "name": "Avery Walking-d", + "md5": "ce9622d11d24607eec7988196b38c3c6.svg", + "type": "costume", + "tags": [], + "info": [ + 50, + 101, + 1 + ] + }, + { + "name": "Avery-a", + "md5": "21393c9114c7d34b1df7ccd12c793672.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 94, + 1 + ] + }, + { + "name": "Avery-b", + "md5": "cc55f2f09599edc4ae0876e8b3d187d0.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 94, + 1 + ] + }, { "name": "Ball-a", "md5": "10117ddaefa98d819f2b1df93805622f.svg", @@ -153,6 +219,50 @@ 1 ] }, + { + "name": "Ballerina-a", + "md5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Ballerina-b", + "md5": "8bc5e47fb1439e29e11e9e3f2e20c6de.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Ballerina-c", + "md5": "6d3a07761b294f705987b0af58f8e335.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Ballerina-d", + "md5": "c3164795edf39e436272f425b4f5e487.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, { "name": "Balloon1-a", "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", @@ -190,9 +300,7 @@ "name": "Bananas", "md5": "40bb8a1afe88cec78254f6fcfee98242.svg", "type": "costume", - "tags": [ - "food" - ], + "tags": [], "info": [ 36, 37, @@ -386,6 +494,50 @@ 1 ] }, + { + "name": "Bear1-a", + "md5": "598722f70e86e6f9b23ef97680baaa9c.svg", + "type": "costume", + "tags": [], + "info": [ + 56, + 93, + 1 + ] + }, + { + "name": "Bear1-b", + "md5": "76ceb0de4409f42713b50cbc1fb45af5.svg", + "type": "costume", + "tags": [], + "info": [ + 56, + 93, + 1 + ] + }, + { + "name": "Bear2-a", + "md5": "3eb8e16a983ff23c418374389c81bd30.svg", + "type": "costume", + "tags": [], + "info": [ + 37, + 42, + 1 + ] + }, + { + "name": "Bear2-b", + "md5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg", + "type": "costume", + "tags": [], + "info": [ + 51, + 42, + 1 + ] + }, { "name": "Beetle", "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", @@ -408,6 +560,28 @@ 1 ] }, + { + "name": "Bells-a", + "md5": "1f151bee966df3f0c41138941713280e.svg", + "type": "costume", + "tags": [], + "info": [ + 53, + 51, + 1 + ] + }, + { + "name": "Bells-b", + "md5": "5b3879a162881aed93169bf0a6680f45.svg", + "type": "costume", + "tags": [], + "info": [ + 48, + 31, + 1 + ] + }, { "name": "Ben-a", "md5": "7f32d8d78ad64f50c018b7b578de2e18.svg", @@ -452,6 +626,39 @@ 1 ] }, + { + "name": "Bowl-a", + "md5": "86f616639846f06fef29931e6b9b59de.svg", + "type": "costume", + "tags": [], + "info": [ + 30, + 15, + 1 + ] + }, + { + "name": "Bowtie-a", + "md5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "type": "costume", + "tags": [], + "info": [ + 11, + 4, + 1 + ] + }, + { + "name": "Bowtie-b", + "md5": "8be1e90e19cd1faced8a2e83c2b5c90d.svg", + "type": "costume", + "tags": [], + "info": [ + 11, + 4, + 1 + ] + }, { "name": "Bread", "md5": "68366160ce0ac1221cdde4455eca9cba.svg", @@ -828,12 +1035,12 @@ }, { "name": "Cat2", - "md5": "3696356a03a8d938318876a593572843.svg", + "md5": "01ae57fd339529445cb890978ef8a054.svg", "type": "costume", "tags": [], "info": [ - 47, - 55, + 87, + 39, 1 ] }, @@ -881,6 +1088,17 @@ 1 ] }, + { + "name": "Cloud", + "md5": "47005a1f20309f577a03a67abbb6b94e.svg", + "type": "costume", + "tags": [], + "info": [ + 71, + 45, + 1 + ] + }, { "name": "Cloud-a", "md5": "c7d7de8e29179407f03b054fa640f4d0.svg", @@ -925,6 +1143,17 @@ 1 ] }, + { + "name": "Convertible3", + "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, { "name": "Crab-a", "md5": "114249a5660f7948663d95de575cfd8d.svg", @@ -948,128 +1177,293 @@ ] }, { - "name": "Crystal-a", - "md5": "8520264d48537bea17b7f6d18e9bb558.svg", + "name": "Creature1-a", + "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg", "type": "costume", "tags": [], "info": [ - 15, - 15, + 54, + 80, 1 ] }, { - "name": "Crystal-b", - "md5": "b62ce1dc2d34741bad036664a01912fb.svg", + "name": "Creature1-b", + "md5": "8042b71fc2ae322151c0a3a163701333.svg", "type": "costume", "tags": [], "info": [ - 12, - 24, + 60, + 78, 1 ] }, { - "name": "Dinosaur1-a", - "md5": "75d367961807fff8e81f556da81dec24.svg", + "name": "Creature1-c", + "md5": "e12a83c8f1c0545b59fe8673e9fac79c.svg", "type": "costume", "tags": [], "info": [ - 98, - 92, + 63, + 164, 1 ] }, { - "name": "Dinosaur1-b", - "md5": "ecdaee9c08ae68fd7a67f81302f00a97.svg", + "name": "Crystal-a", + "md5": "8520264d48537bea17b7f6d18e9bb558.svg", "type": "costume", "tags": [], "info": [ - 98, - 47, + 15, + 15, 1 ] }, { - "name": "Dinosaur1-c", - "md5": "02078a81abd2e10cb62ebcc853a40c92.svg", + "name": "Crystal-b", + "md5": "b62ce1dc2d34741bad036664a01912fb.svg", "type": "costume", "tags": [], "info": [ - 81, - 91, + 12, + 24, 1 ] }, { - "name": "Dinosaur1-d", - "md5": "c9ed031bc9bf11416142880f89436be9.svg", + "name": "Dani-a", + "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg", "type": "costume", "tags": [], "info": [ - 98, - 91, + 49, + 115, 1 ] }, { - "name": "Dinosaur2-a", - "md5": "5493f5deffe7aed451cd8b255740de4a.svg", + "name": "Dani-b", + "md5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg", "type": "costume", "tags": [], "info": [ + 82, 115, - 72, 1 ] }, { - "name": "Dinosaur2-b", - "md5": "70bba739b7df0bd08abb31026d078ee7.svg", + "name": "Dani-c", + "md5": "cbc5f9c67022af201d498bc9b35608b8.svg", "type": "costume", "tags": [], "info": [ - 74, - 67, + 49, + 113, 1 ] }, { - "name": "Dinosaur2-c", - "md5": "4a51679d86aafcc9cee1c010fc141288.svg", + "name": "Dee-a", + "md5": "aa239b7ccdce6bddf06900c709525764.svg", "type": "costume", "tags": [], "info": [ - 62, - 67, + 52, + 99, 1 ] }, { - "name": "Dinosaur2-d", - "md5": "47053664449b24749aaf199925b19f8e.svg", + "name": "Dee-b", + "md5": "62b4ac1b735599e21af77c390b178095.svg", "type": "costume", "tags": [], "info": [ - 71, - 66, + 33, + 99, 1 ] }, { - "name": "Dinosaur3-a", - "md5": "17636db6f607c14a03a36e18abfea86a.svg", + "name": "Dee-c", + "md5": "6aa6196ce3245e93b8d1299f33adffcd.svg", "type": "costume", "tags": [], "info": [ - 115, - 72, + 36, + 102, 1 ] }, { - "name": "Dinosaur3-b", + "name": "Dee-d", + "md5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg", + "type": "costume", + "tags": [], + "info": [ + 33, + 99, + 1 + ] + }, + { + "name": "Dee-e", + "md5": "e358d2a7e3a0a680928657161ce81a0a.svg", + "type": "costume", + "tags": [], + "info": [ + 32, + 99, + 1 + ] + }, + { + "name": "Devin-a", + "md5": "b1897e56265470b55fa65fabe2423c55.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 95, + 1 + ] + }, + { + "name": "Devin-b", + "md5": "873fbd641768c8f753a6568da97633e7.svg", + "type": "costume", + "tags": [], + "info": [ + 40, + 96, + 1 + ] + }, + { + "name": "Devin-c", + "md5": "eac3c03d86cebb42c8f30e373cb7f623.svg", + "type": "costume", + "tags": [], + "info": [ + 32, + 95, + 1 + ] + }, + { + "name": "Devin-d", + "md5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg", + "type": "costume", + "tags": [], + "info": [ + 41, + 95, + 1 + ] + }, + { + "name": "Dinosaur1-a", + "md5": "75d367961807fff8e81f556da81dec24.svg", + "type": "costume", + "tags": [], + "info": [ + 98, + 92, + 1 + ] + }, + { + "name": "Dinosaur1-b", + "md5": "ecdaee9c08ae68fd7a67f81302f00a97.svg", + "type": "costume", + "tags": [], + "info": [ + 98, + 47, + 1 + ] + }, + { + "name": "Dinosaur1-c", + "md5": "02078a81abd2e10cb62ebcc853a40c92.svg", + "type": "costume", + "tags": [], + "info": [ + 81, + 91, + 1 + ] + }, + { + "name": "Dinosaur1-d", + "md5": "c9ed031bc9bf11416142880f89436be9.svg", + "type": "costume", + "tags": [], + "info": [ + 98, + 91, + 1 + ] + }, + { + "name": "Dinosaur2-a", + "md5": "5493f5deffe7aed451cd8b255740de4a.svg", + "type": "costume", + "tags": [], + "info": [ + 115, + 72, + 1 + ] + }, + { + "name": "Dinosaur2-b", + "md5": "70bba739b7df0bd08abb31026d078ee7.svg", + "type": "costume", + "tags": [], + "info": [ + 74, + 67, + 1 + ] + }, + { + "name": "Dinosaur2-c", + "md5": "4a51679d86aafcc9cee1c010fc141288.svg", + "type": "costume", + "tags": [], + "info": [ + 62, + 67, + 1 + ] + }, + { + "name": "Dinosaur2-d", + "md5": "47053664449b24749aaf199925b19f8e.svg", + "type": "costume", + "tags": [], + "info": [ + 71, + 66, + 1 + ] + }, + { + "name": "Dinosaur3-a", + "md5": "17636db6f607c14a03a36e18abfea86a.svg", + "type": "costume", + "tags": [], + "info": [ + 115, + 72, + 1 + ] + }, + { + "name": "Dinosaur3-b", "md5": "1b20afc713b04ca5d01b25d050aa35ac.svg", "type": "costume", "tags": [], @@ -1332,6 +1726,28 @@ 1 ] }, + { + "name": "Dove-a", + "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg", + "type": "costume", + "tags": [], + "info": [ + 86, + 59, + 1 + ] + }, + { + "name": "Dove-b", + "md5": "1c0bc118044d7f6033bc9cd1ef555590.svg", + "type": "costume", + "tags": [], + "info": [ + 88, + 57, + 1 + ] + }, { "name": "Dragon-a", "md5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg", @@ -1508,6 +1924,17 @@ 1 ] }, + { + "name": "Earth", + "md5": "814197522984a302972998b1a7f92d91.svg", + "type": "costume", + "tags": [], + "info": [ + 72, + 72, + 1 + ] + }, { "name": "Egg-a", "md5": "bc723738dfe626c5c3bb90970d985961.svg", @@ -1794,6 +2221,17 @@ 1 ] }, + { + "name": "Fruitsalad", + "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", + "type": "costume", + "tags": [], + "info": [ + 30, + 22, + 1 + ] + }, { "name": "Ghost1 ", "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", @@ -1828,112 +2266,211 @@ ] }, { - "name": "Giga-a", - "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", + "name": "Gift-a", + "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg", "type": "costume", "tags": [], "info": [ - 72, - 96, + 33, + 25, 1 ] }, { - "name": "Giga-b", - "md5": "528613711a7eae3a929025be04db081c.svg", + "name": "Gift-b", + "md5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg", "type": "costume", "tags": [], "info": [ - 72, - 96, + 33, + 26, 1 ] }, { - "name": "Giga-c", - "md5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", + "name": "Giga Walk1", + "md5": "f76bc420011db2cdb2de378c1536f6da.svg", "type": "costume", "tags": [], "info": [ - 73, - 96, + 70, + 107, 1 ] }, { - "name": "Giga-d", - "md5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", + "name": "Giga Walk2", + "md5": "43b5874e8a54f93bd02727f0abf6905b.svg", "type": "costume", "tags": [], "info": [ - 73, - 96, + 71, + 107, 1 ] }, { - "name": "Goalie-a", - "md5": "86b0610ea21fdecb99795c5e6d52768c.svg", + "name": "Giga Walk3", + "md5": "9aab3bbb375765391978be4f6d478ab3.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 71, + 107, 1 ] }, { - "name": "Goalie-b", - "md5": "af3ef5125d187772240a1120e7eb67ac.svg", + "name": "Giga Walk4", + "md5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 73, + 110, 1 ] }, { - "name": "Goalie-c", - "md5": "7c9377cedae11a094d2e77bed3edb884.svg", + "name": "Giga-a", + "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 72, + 96, 1 ] }, { - "name": "Goalie-d", - "md5": "bd628034d356d30b0e9b563447471290.svg", + "name": "Giga-b", + "md5": "528613711a7eae3a929025be04db081c.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 72, + 96, 1 ] }, { - "name": "Goalie-e", - "md5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg", + "name": "Giga-c", + "md5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 73, + 96, 1 ] }, { - "name": "Goblin-a", - "md5": "f10eaedff51f50f0809a7b4b310337fa.svg", + "name": "Giga-d", + "md5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", "type": "costume", "tags": [], "info": [ - 40, - 80, + 73, + 96, + 1 + ] + }, + { + "name": "Glass Water-a", + "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 48, + 1 + ] + }, + { + "name": "Glass Water-b", + "md5": "bc07ce6a2004ac91ce704531a1c526e5.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 48, + 1 + ] + }, + { + "name": "Glasses", + "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg", + "type": "costume", + "tags": [], + "info": [ + 16, + 9, + 1 + ] + }, + { + "name": "Goalie-a", + "md5": "86b0610ea21fdecb99795c5e6d52768c.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Goalie-b", + "md5": "af3ef5125d187772240a1120e7eb67ac.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Goalie-c", + "md5": "7c9377cedae11a094d2e77bed3edb884.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Goalie-d", + "md5": "bd628034d356d30b0e9b563447471290.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Goalie-e", + "md5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Goblin-a", + "md5": "f10eaedff51f50f0809a7b4b310337fa.svg", + "type": "costume", + "tags": [], + "info": [ + 40, + 80, 1 ] }, @@ -2003,6 +2540,17 @@ 1 ] }, + { + "name": "Green Flag", + "md5": "173e20ac537d2c278ed621be3db3fc87.svg", + "type": "costume", + "tags": [], + "info": [ + 70, + 30, + 1 + ] + }, { "name": "Griffin-a", "md5": "d2ddc25b224ad72240f92e632afc7c69.svg", @@ -2102,6 +2650,149 @@ 1 ] }, + { + "name": "Hat", + "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg", + "type": "costume", + "tags": [], + "info": [ + 52, + 60, + 1 + ] + }, + { + "name": "Hat Beanie", + "md5": "3271da33e4108ed08a303c2244739fbf.svg", + "type": "costume", + "tags": [], + "info": [ + 28, + 19, + 1 + ] + }, + { + "name": "Hat Party2-a", + "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Hat Winter", + "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", + "type": "costume", + "tags": [], + "info": [ + 26, + 101, + 1 + ] + }, + { + "name": "Hat Wizard", + "md5": "581571e8c8f5adeb01565e12b1b77b58.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 69, + 1 + ] + }, + { + "name": "Headband", + "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg", + "type": "costume", + "tags": [], + "info": [ + 53, + 43, + 1 + ] + }, + { + "name": "Heart Code", + "md5": "497c5df9e02467202ff93096dccaf91f.svg", + "type": "costume", + "tags": [], + "info": [ + 58, + 61, + 1 + ] + }, + { + "name": "Heart Face", + "md5": "4ab84263da32069cf97cc0fa52729a0d.svg", + "type": "costume", + "tags": [], + "info": [ + 59, + 52, + 1 + ] + }, + { + "name": "Heart Love It", + "md5": "d448acd247f10f32bef7823cd433f928.svg", + "type": "costume", + "tags": [], + "info": [ + 58, + 61, + 1 + ] + }, + { + "name": "Heart Purple", + "md5": "b15362bb6b02a59e364db9081ccf19aa.svg", + "type": "costume", + "tags": [], + "info": [ + 66, + 62, + 1 + ] + }, + { + "name": "Heart Red", + "md5": "6e79e087c866a016f99ee482e1aeba47.svg", + "type": "costume", + "tags": [], + "info": [ + 65, + 56, + 1 + ] + }, + { + "name": "Heart Smile", + "md5": "74a8f75d139d330b715787edbbacd83d.svg", + "type": "costume", + "tags": [], + "info": [ + 58, + 61, + 1 + ] + }, + { + "name": "Heart Sweet", + "md5": "a39d78d33b051e8b12a4b2a10d77b249.svg", + "type": "costume", + "tags": [], + "info": [ + 58, + 61, + 1 + ] + }, { "name": "Hedgehog-a", "md5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg", @@ -2179,6 +2870,17 @@ 1 ] }, + { + "name": "Home Button", + "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg", + "type": "costume", + "tags": [], + "info": [ + 72, + 72, + 1 + ] + }, { "name": "Horse1-a", "md5": "32f4d80477cd070cb0848e555d374060.svg", @@ -2267,6 +2969,28 @@ 1 ] }, + { + "name": "Jeans-a", + "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg", + "type": "costume", + "tags": [], + "info": [ + 22, + 25, + 1 + ] + }, + { + "name": "Jeans-b", + "md5": "01732aa03a48482093fbed3ea402c4a9.svg", + "type": "costume", + "tags": [], + "info": [ + 22, + 25, + 1 + ] + }, { "name": "Jellyfish-a", "md5": "9e6563e417350af3094c2ed02b9b0bbd.svg", @@ -2355,6 +3079,17 @@ 1 ] }, + { + "name": "Key", + "md5": "af35300cef35803e11f4ed744dc5e818.svg", + "type": "costume", + "tags": [], + "info": [ + 42, + 27, + 1 + ] + }, { "name": "Keyboard-a", "md5": "c67d180e964926b6393ac14781541b39.svg", @@ -2465,6 +3200,61 @@ 1 ] }, + { + "name": "Ladybug2-a", + "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 28, + 1 + ] + }, + { + "name": "Ladybug2-b", + "md5": "a2bb15ace808e070a2b815502952b292.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 28, + 1 + ] + }, + { + "name": "Laptop", + "md5": "76f456b30b98eeefd7c942b27b524e31.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Lightning", + "md5": "c2d636ab2b491e591536afc3d49cbecd.svg", + "type": "costume", + "tags": [], + "info": [ + 21, + 83, + 1 + ] + }, + { + "name": "Line", + "md5": "1b2cfb4d4746522aeb84e16a62820299.svg", + "type": "costume", + "tags": [], + "info": [ + 239, + 7, + 1 + ] + }, { "name": "Lion-a", "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", @@ -2520,6 +3310,17 @@ 1 ] }, + { + "name": "Magicwand", + "md5": "3db9bfe57d561557795633c5cda44e8c.svg", + "type": "costume", + "tags": [], + "info": [ + 41, + 18, + 1 + ] + }, { "name": "Max-a", "md5": "e10cca3bdbc09d039c2f937574f7a6ea.svg", @@ -2741,7 +3542,7 @@ ] }, { - "name": "Monkey2-a", + "name": "Monkey-a", "md5": "6e4de762dbd52cd2b6356694a9668211.svg", "type": "costume", "tags": [], @@ -2752,7 +3553,7 @@ ] }, { - "name": "Monkey2-b", + "name": "Monkey-b", "md5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", "type": "costume", "tags": [], @@ -2763,7 +3564,7 @@ ] }, { - "name": "Monkey2-c", + "name": "Monkey-c", "md5": "db8eb50b948047181922310bb94511fb.svg", "type": "costume", "tags": [], @@ -2773,6 +3574,50 @@ 1 ] }, + { + "name": "Mouse1-a", + "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", + "type": "costume", + "tags": [], + "info": [ + 50, + 27, + 1 + ] + }, + { + "name": "Mouse1-b", + "md5": "f5e477a3f94fc98ba3cd927228405646.svg", + "type": "costume", + "tags": [], + "info": [ + 65, + 21, + 1 + ] + }, + { + "name": "Muffin-a", + "md5": "e00161f08c77d10e72e44b6e01243e63.svg", + "type": "costume", + "tags": [], + "info": [ + 85, + 48, + 1 + ] + }, + { + "name": "Muffin-b", + "md5": "fb60c3f8d6a892813299daa33b91df23.svg", + "type": "costume", + "tags": [], + "info": [ + 85, + 48, + 1 + ] + }, { "name": "Nano-a", "md5": "02c5433118f508038484bbc5b111e187.svg", @@ -2817,6 +3662,17 @@ 1 ] }, + { + "name": "Neigh Pony", + "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg", + "type": "costume", + "tags": [], + "info": [ + 74, + 78, + 1 + ] + }, { "name": "Octopus-a", "md5": "038df646d2f935d2a5dd601b343fc1d9.svg", @@ -2872,6 +3728,50 @@ 1 ] }, + { + "name": "Orange", + "md5": "780ee2ef342f79a81b4c353725331138.svg", + "type": "costume", + "tags": [], + "info": [ + 19, + 18, + 1 + ] + }, + { + "name": "Orange2-a", + "md5": "89b11d2a404c3972b65743f743cc968a.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 24, + 1 + ] + }, + { + "name": "Orange2-b", + "md5": "5f7998e007dfa70e70bbd8d43199ebba.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 27, + 1 + ] + }, + { + "name": "Orange2-c", + "md5": "466e9e2d62ee135a2dabd5593e6f8407.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 33, + 1 + ] + }, { "name": "Owl-a", "md5": "a312273b198fcacf68976e3cc74fadb4.svg", @@ -2905,6 +3805,17 @@ 1 ] }, + { + "name": "Paddle", + "md5": "8038149bdfe24733ea2144d37d297815.svg", + "type": "costume", + "tags": [], + "info": [ + 44, + 7, + 1 + ] + }, { "name": "Panther-a", "md5": "04ca2c122cff11b9bc23834d6f79361e.svg", @@ -2960,6 +3871,39 @@ 1 ] }, + { + "name": "Partyhat1", + "md5": "70a7f535d8857cf9175492415361c361.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Pencil-a", + "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 54, + 1 + ] + }, + { + "name": "Pencil-b", + "md5": "21088922dbe127f6d2e58e2e83fb632e.svg", + "type": "costume", + "tags": [], + "info": [ + 48, + 68, + 1 + ] + }, { "name": "Penguin1-a", "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", @@ -3026,6 +3970,50 @@ 1 ] }, + { + "name": "Pico Walk1", + "md5": "8eab5fe20dd249bf22964298b1d377eb.svg", + "type": "costume", + "tags": [], + "info": [ + 54, + 71, + 1 + ] + }, + { + "name": "Pico Walk2", + "md5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg", + "type": "costume", + "tags": [], + "info": [ + 54, + 71, + 1 + ] + }, + { + "name": "Pico Walk3", + "md5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg", + "type": "costume", + "tags": [], + "info": [ + 54, + 70, + 1 + ] + }, + { + "name": "Pico Walk4", + "md5": "2582d012d57bca59bc0315c5c5954958.svg", + "type": "costume", + "tags": [], + "info": [ + 54, + 70, + 1 + ] + }, { "name": "Pico-a", "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", @@ -3070,6 +4058,17 @@ 1 ] }, + { + "name": "Planet2", + "md5": "978784738c1d9dd4b1d397fd18bdf406.svg", + "type": "costume", + "tags": [], + "info": [ + 72, + 72, + 1 + ] + }, { "name": "Potion-a", "md5": "a317b50b255a208455a7733091adad23.svg", @@ -3103,6 +4102,17 @@ 1 ] }, + { + "name": "Prince", + "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, { "name": "Princess-a", "md5": "fcbf44a543dfda884d8acbd6af66faad.svg", @@ -3302,13 +4312,24 @@ ] }, { - "name": "Referee-d", - "md5": "5e037aca5446a7e57093e45fe6f18c9e.svg", + "name": "Referee-d", + "md5": "5e037aca5446a7e57093e45fe6f18c9e.svg", + "type": "costume", + "tags": [], + "info": [ + 76, + 68, + 1 + ] + }, + { + "name": "Reindeer", + "md5": "0fff0b181cc4d9250b5b985cc283b049.svg", "type": "costume", "tags": [], "info": [ - 76, - 68, + 39, + 70, 1 ] }, @@ -3422,6 +4443,17 @@ 1 ] }, + { + "name": "Rocks", + "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", + "type": "costume", + "tags": [], + "info": [ + 59, + 15, + 1 + ] + }, { "name": "Saxophone-a", "md5": "e9e4297f5d7e630a384b1dea835ec72d.svg", @@ -3444,6 +4476,28 @@ 1 ] }, + { + "name": "Scarf1", + "md5": "9db18d2a2b3c9859654fc1b4832e6076.svg", + "type": "costume", + "tags": [], + "info": [ + 54, + 36, + 1 + ] + }, + { + "name": "Scarf2", + "md5": "ce66662165e2756070f1b12e0a7cb5db.svg", + "type": "costume", + "tags": [], + "info": [ + 23, + 16, + 1 + ] + }, { "name": "Shark-a", "md5": "4ca6776e9c021e8b21c3346793c9361d.svg", @@ -3499,6 +4553,127 @@ 1 ] }, + { + "name": "Shirt Blouse", + "md5": "918a507af6bbae9e7f36f0d949900838.svg", + "type": "costume", + "tags": [], + "info": [ + 35, + 28, + 1 + ] + }, + { + "name": "Shirt Collar-a", + "md5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", + "type": "costume", + "tags": [], + "info": [ + 30, + 57, + 1 + ] + }, + { + "name": "Shirt Collar-b", + "md5": "f1b20c3350e8a7e92a2fb1925ad4158b.svg", + "type": "costume", + "tags": [], + "info": [ + 30, + 57, + 1 + ] + }, + { + "name": "Shirt Collar-c", + "md5": "5f04b99416a794e04d0855f446780f18.svg", + "type": "costume", + "tags": [], + "info": [ + 30, + 57, + 1 + ] + }, + { + "name": "Shirt-t", + "md5": "5d7fa4f1788f03d2962f1624d6eac800.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 28, + 1 + ] + }, + { + "name": "Shirt2-a", + "md5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 48, + 1 + ] + }, + { + "name": "Shirt2-a2", + "md5": "5b78ab09592126b6bbe2d4907d203909.svg", + "type": "costume", + "tags": [], + "info": [ + 39, + 48, + 1 + ] + }, + { + "name": "Shoes1", + "md5": "ffab4cc284070b50ac317e515f59f7d8.svg", + "type": "costume", + "tags": [], + "info": [ + 36, + 23, + 1 + ] + }, + { + "name": "Shoes2", + "md5": "1dc5d568d98405c370b91a230397a7f9.svg", + "type": "costume", + "tags": [], + "info": [ + 40, + 8, + 1 + ] + }, + { + "name": "Singer1", + "md5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", + "type": "costume", + "tags": [], + "info": [ + 75, + 75, + 1 + ] + }, + { + "name": "Skates", + "md5": "00e5e173400662875a26bb7d6556346a.svg", + "type": "costume", + "tags": [], + "info": [ + 44, + -21, + 1 + ] + }, { "name": "Snake-a", "md5": "4d06e12d90479461303d828f0970f2d4.svg", @@ -3532,6 +4707,17 @@ 1 ] }, + { + "name": "Snowflake", + "md5": "67de2af723246de37d7379b76800ee0b.svg", + "type": "costume", + "tags": [], + "info": [ + 104, + 103, + 1 + ] + }, { "name": "Snowman", "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", @@ -3620,6 +4806,17 @@ 1 ] }, + { + "name": "Star", + "md5": "ab0914e53e360477275e58b83ec4d423.svg", + "type": "costume", + "tags": [], + "info": [ + 21, + 19, + 1 + ] + }, { "name": "Starfish-a", "md5": "3d1101bbc24ae292a36356af325f660c.svg", @@ -3642,6 +4839,17 @@ 1 ] }, + { + "name": "Stop", + "md5": "5b9e3e8edffb0bd4914113609eec5e04.svg", + "type": "costume", + "tags": [], + "info": [ + 25, + 25, + 1 + ] + }, { "name": "Strawberry-a", "md5": "734556fb8e14740f2cbc971238b71d47.svg", @@ -3697,6 +4905,61 @@ 1 ] }, + { + "name": "Sun", + "md5": "55c931c65456822c0c56a2b30e3e550d.svg", + "type": "costume", + "tags": [], + "info": [ + 72, + 72, + 1 + ] + }, + { + "name": "Sunglasses1", + "md5": "424393e8705aeadcfecb8559ce4dcea2.svg", + "type": "costume", + "tags": [], + "info": [ + 37, + 14, + 1 + ] + }, + { + "name": "Sunglasses2", + "md5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", + "type": "costume", + "tags": [], + "info": [ + 29, + 10, + 1 + ] + }, + { + "name": "Taco-a", + "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg", + "type": "costume", + "tags": [], + "info": [ + 20, + 15, + 1 + ] + }, + { + "name": "Taco-b", + "md5": "6dee4f866d79e6475d9824ba11973037.svg", + "type": "costume", + "tags": [], + "info": [ + 56, + 15, + 1 + ] + }, { "name": "Takeout-a", "md5": "0cfdefe0df1a032b90c8facd9f5dbe1f.svg", @@ -3829,6 +5092,39 @@ 1 ] }, + { + "name": "Tree1", + "md5": "8c40e2662c55d17bc384f47165ac43c1.svg", + "type": "costume", + "tags": [], + "info": [ + 77, + 126, + 1 + ] + }, + { + "name": "Trees-a", + "md5": "866ed2c2971bb04157e14e935ac8521c.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 94, + 1 + ] + }, + { + "name": "Trees-b", + "md5": "f1393dde1bb0fc512577995b27616d86.svg", + "type": "costume", + "tags": [], + "info": [ + 36, + 87, + 1 + ] + }, { "name": "Trumpet-a", "md5": "8fa7459ed5877bb14c6625e688be70e7.svg", @@ -3928,6 +5224,28 @@ 1 ] }, + { + "name": "Vest-a", + "md5": "f8285ca9564451c62a0e3d75b8a714e8.svg", + "type": "costume", + "tags": [], + "info": [ + 18, + 62, + 1 + ] + }, + { + "name": "Vest-b", + "md5": "77d553eea3910ab8f5bac3d2da601061.svg", + "type": "costume", + "tags": [], + "info": [ + 18, + 62, + 1 + ] + }, { "name": "Wand", "md5": "1aa56e9ef7043eaf36ecfe8e330271b7.svg", @@ -3939,6 +5257,17 @@ 1 ] }, + { + "name": "Wanda", + "md5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", + "type": "costume", + "tags": [], + "info": [ + 49, + 68, + 1 + ] + }, { "name": "Watermelon-a", "md5": "26fecef75cf3b6e0d98bff5c06475036.svg", diff --git a/src/lib/libraries/sprites.json b/src/lib/libraries/sprites.json index 63441cb9ce6c5b96f9353ac485bac7bc7bb8b3ac..87a44042801fd601285a332757f92f005d2ad48d 100644 --- a/src/lib/libraries/sprites.json +++ b/src/lib/libraries/sprites.json @@ -183,6 +183,126 @@ "spriteInfo": {} } }, + { + "name": "Avery", + "md5": "21393c9114c7d34b1df7ccd12c793672.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Avery", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "avery-a", + "baseLayerID": -1, + "baseLayerMD5": "21393c9114c7d34b1df7ccd12c793672.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 94 + }, + { + "costumeName": "avery-b", + "baseLayerID": -1, + "baseLayerMD5": "cc55f2f09599edc4ae0876e8b3d187d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 94 + } + ], + "currentCostumeIndex": 0, + "scratchX": -60, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 1, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Avery Walking", + "md5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Avery Walking", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "avery walking-a", + "baseLayerID": -1, + "baseLayerMD5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 95 + }, + { + "costumeName": "avery walking-b", + "baseLayerID": -1, + "baseLayerMD5": "c295731e8666ad2e1575fb4b4f82988d.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 102 + }, + { + "costumeName": "avery walking-c", + "baseLayerID": -1, + "baseLayerMD5": "597a834225c9949e419dff7db1bc2453.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 95 + }, + { + "costumeName": "avery walking-d", + "baseLayerID": -1, + "baseLayerMD5": "ce9622d11d24607eec7988196b38c3c6.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 101 + } + ], + "currentCostumeIndex": 0, + "scratchX": -63, + "scratchY": 42, + "scale": 1, + "direction": 90, + "rotationStyle": "leftRight", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Ball", "md5": "10117ddaefa98d819f2b1df93805622f.svg", @@ -259,6 +379,74 @@ "spriteInfo": {} } }, + { + "name": "Ballerina", + "md5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Ballerina", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "ballerina-a", + "baseLayerID": -1, + "baseLayerMD5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "ballerina-b", + "baseLayerID": -1, + "baseLayerMD5": "8bc5e47fb1439e29e11e9e3f2e20c6de.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "ballerina-c", + "baseLayerID": -1, + "baseLayerMD5": "6d3a07761b294f705987b0af58f8e335.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "ballerina-d", + "baseLayerID": -1, + "baseLayerMD5": "c3164795edf39e436272f425b4f5e487.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 3, + "scratchX": -19, + "scratchY": -7, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 3, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Balloon1", "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", @@ -319,6 +507,50 @@ "spriteInfo": {} } }, + { + "name": "Bananas", + "md5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Bananas", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "bananas", + "baseLayerID": -1, + "baseLayerMD5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 37 + } + ], + "currentCostumeIndex": 0, + "scratchX": -77, + "scratchY": 47, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 4, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Baseball", "md5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", @@ -724,19 +956,17 @@ } }, { - "name": "Beetle", - "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "name": "Bear1", + "md5": "598722f70e86e6f9b23ef97680baaa9c.svg", "type": "sprite", - "tags": [ - "animals" - ], + "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Beetle", + "objName": "Bear1", "sounds": [ { "soundName": "pop", @@ -749,81 +979,239 @@ ], "costumes": [ { - "costumeName": "beetle", + "costumeName": "bear1-a", "baseLayerID": -1, - "baseLayerMD5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "baseLayerMD5": "598722f70e86e6f9b23ef97680baaa9c.svg", "bitmapResolution": 1, - "rotationCenterX": 43, - "rotationCenterY": 38 + "rotationCenterX": 56, + "rotationCenterY": 93 + }, + { + "costumeName": "bear1-b", + "baseLayerID": -1, + "baseLayerMD5": "76ceb0de4409f42713b50cbc1fb45af5.svg", + "bitmapResolution": 1, + "rotationCenterX": 56, + "rotationCenterY": 93 } ], "currentCostumeIndex": 0, - "scratchX": 77, - "scratchY": -42, + "scratchX": 67, + "scratchY": 40, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 12, + "indexInLibrary": 5, "visible": true, "spriteInfo": {} } }, { - "name": "Bell", - "md5": "f35056c772395455d703773657e1da6e.svg", + "name": "Bear2", + "md5": "3eb8e16a983ff23c418374389c81bd30.svg", "type": "sprite", "tags": [], "info": [ 0, - 1, - 2 + 2, + 1 ], "json": { - "objName": "Bell", + "objName": "Bear2", "sounds": [ { - "soundName": "xylo1", - "soundID": -1, - "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", - "sampleCount": 238232, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "bell toll", + "soundName": "pop", "soundID": -1, - "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", - "sampleCount": 45168, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bell1", + "costumeName": "bear2-a", "baseLayerID": -1, - "baseLayerMD5": "f35056c772395455d703773657e1da6e.svg", + "baseLayerMD5": "3eb8e16a983ff23c418374389c81bd30.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 69 + "rotationCenterX": 37, + "rotationCenterY": 42 + }, + { + "costumeName": "bear2-b", + "baseLayerID": -1, + "baseLayerMD5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg", + "bitmapResolution": 1, + "rotationCenterX": 51, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, - "scratchX": 96, - "scratchY": 8, + "scratchX": -69, + "scratchY": 34, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 13, + "indexInLibrary": 6, "visible": true, "spriteInfo": {} } }, { - "name": "Ben", - "md5": "7f32d8d78ad64f50c018b7b578de2e18.svg", + "name": "Beetle", + "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "type": "sprite", + "tags": [ + "animals" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Beetle", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "beetle", + "baseLayerID": -1, + "baseLayerMD5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "bitmapResolution": 1, + "rotationCenterX": 43, + "rotationCenterY": 38 + } + ], + "currentCostumeIndex": 0, + "scratchX": 77, + "scratchY": -42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 12, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bell", + "md5": "f35056c772395455d703773657e1da6e.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 2 + ], + "json": { + "objName": "Bell", + "sounds": [ + { + "soundName": "xylo1", + "soundID": -1, + "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", + "sampleCount": 238232, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "bell toll", + "soundID": -1, + "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", + "sampleCount": 45168, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "bell1", + "baseLayerID": -1, + "baseLayerMD5": "f35056c772395455d703773657e1da6e.svg", + "bitmapResolution": 1, + "rotationCenterX": 59, + "rotationCenterY": 69 + } + ], + "currentCostumeIndex": 0, + "scratchX": 96, + "scratchY": 8, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 13, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bells", + "md5": "1f151bee966df3f0c41138941713280e.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Bells", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "bells-a", + "baseLayerID": -1, + "baseLayerMD5": "1f151bee966df3f0c41138941713280e.svg", + "bitmapResolution": 1, + "rotationCenterX": 53, + "rotationCenterY": 51 + }, + { + "costumeName": "bells-b", + "baseLayerID": -1, + "baseLayerMD5": "5b3879a162881aed93169bf0a6680f45.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 31 + } + ], + "currentCostumeIndex": 0, + "scratchX": 83, + "scratchY": -5, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 7, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Ben", + "md5": "7f32d8d78ad64f50c018b7b578de2e18.svg", "type": "sprite", "tags": [ "sports", @@ -895,6 +1283,102 @@ "spriteInfo": {} } }, + { + "name": "Bowl", + "md5": "86f616639846f06fef29931e6b9b59de.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Bowl", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "bowl-a", + "baseLayerID": -1, + "baseLayerMD5": "86f616639846f06fef29931e6b9b59de.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 15 + } + ], + "currentCostumeIndex": 0, + "scratchX": 17, + "scratchY": 18, + "scale": 1.2500000000000002, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 8, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bowtie", + "md5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Bowtie", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "bowtie-a", + "baseLayerID": -1, + "baseLayerMD5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "bitmapResolution": 1, + "rotationCenterX": 11, + "rotationCenterY": 4 + }, + { + "costumeName": "bowtie-b", + "baseLayerID": -1, + "baseLayerMD5": "8be1e90e19cd1faced8a2e83c2b5c90d.svg", + "bitmapResolution": 1, + "rotationCenterX": 11, + "rotationCenterY": 4 + } + ], + "currentCostumeIndex": 0, + "scratchX": -66, + "scratchY": 0, + "scale": 1.6, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": true, + "indexInLibrary": 9, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Bread", "md5": "68366160ce0ac1221cdde4455eca9cba.svg", @@ -1626,7 +2110,9 @@ "name": "Cat", "md5": "09dc888b0b7df19f70d81588ae73420e.svg", "type": "sprite", - "tags": [], + "tags": [ + "animals" + ], "info": [ 0, 2, @@ -1662,7 +2148,7 @@ "rotationCenterY": 55 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -1727,50 +2213,94 @@ } }, { - "name": "Centaur", - "md5": "45c1890ae0ab41f24f67ea74bec006c9.svg", + "name": "Cat2", + "md5": "01ae57fd339529445cb890978ef8a054.svg", "type": "sprite", - "tags": [ - "fantasy", - "people", - "ipzy" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Centaur", + "objName": "Cat2", "sounds": [ { - "soundName": "pop", + "soundName": "meow2", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "md5": "cf51a0c4088942d95bcc20af13202710.wav", + "sampleCount": 6512, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "centaur-a", - "baseLayerID": -1, - "baseLayerMD5": "45c1890ae0ab41f24f67ea74bec006c9.svg", - "bitmapResolution": 1, - "rotationCenterX": 110, - "rotationCenterY": 140 - }, - { - "costumeName": "centaur-b", + "costumeName": "cat2", "baseLayerID": -1, - "baseLayerMD5": "783e8cd43e0c1feca25f639cb5cbc7da.svg", + "baseLayerMD5": "01ae57fd339529445cb890978ef8a054.svg", "bitmapResolution": 1, - "rotationCenterX": 110, - "rotationCenterY": 140 - }, - { - "costumeName": "centaur-c", + "rotationCenterX": 87, + "rotationCenterY": 39 + } + ], + "currentCostumeIndex": 0, + "scratchX": -71, + "scratchY": 1, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 10, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Centaur", + "md5": "45c1890ae0ab41f24f67ea74bec006c9.svg", + "type": "sprite", + "tags": [ + "fantasy", + "people", + "ipzy" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Centaur", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "centaur-a", + "baseLayerID": -1, + "baseLayerMD5": "45c1890ae0ab41f24f67ea74bec006c9.svg", + "bitmapResolution": 1, + "rotationCenterX": 110, + "rotationCenterY": 140 + }, + { + "costumeName": "centaur-b", + "baseLayerID": -1, + "baseLayerMD5": "783e8cd43e0c1feca25f639cb5cbc7da.svg", + "bitmapResolution": 1, + "rotationCenterX": 110, + "rotationCenterY": 140 + }, + { + "costumeName": "centaur-c", "baseLayerID": -1, "baseLayerMD5": "d09f7160383c6399354c3d9960e852db.svg", "bitmapResolution": 1, @@ -1798,6 +2328,50 @@ "spriteInfo": {} } }, + { + "name": "Cloud", + "md5": "47005a1f20309f577a03a67abbb6b94e.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Cloud", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "cloud", + "baseLayerID": -1, + "baseLayerMD5": "47005a1f20309f577a03a67abbb6b94e.svg", + "bitmapResolution": 1, + "rotationCenterX": 71, + "rotationCenterY": 45 + } + ], + "currentCostumeIndex": 0, + "scratchX": 81, + "scratchY": -12, + "scale": 0.9, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 11, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Clouds", "md5": "c7d7de8e29179407f03b054fa640f4d0.svg", @@ -1866,6 +2440,50 @@ "spriteInfo": {} } }, + { + "name": "Convertible3", + "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Convertible3", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "convertible3", + "baseLayerID": -1, + "baseLayerMD5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 7, + "scratchY": 13, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 12, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Crab", "md5": "114249a5660f7948663d95de575cfd8d.svg", @@ -1918,6 +2536,66 @@ "spriteInfo": {} } }, + { + "name": "Creature1", + "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Creature1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "creature1-a", + "baseLayerID": -1, + "baseLayerMD5": "a560c6eab2e1de2462bdaeb1d698736c.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 80 + }, + { + "costumeName": "creature1-b", + "baseLayerID": -1, + "baseLayerMD5": "8042b71fc2ae322151c0a3a163701333.svg", + "bitmapResolution": 1, + "rotationCenterX": 60, + "rotationCenterY": 78 + }, + { + "costumeName": "creature1-c", + "baseLayerID": -1, + "baseLayerMD5": "e12a83c8f1c0545b59fe8673e9fac79c.svg", + "bitmapResolution": 1, + "rotationCenterX": 63, + "rotationCenterY": 164 + } + ], + "currentCostumeIndex": 0, + "scratchX": 90, + "scratchY": 39, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 13, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Crystal", "md5": "8520264d48537bea17b7f6d18e9bb558.svg", @@ -1974,21 +2652,17 @@ } }, { - "name": "Dinosaur1", - "md5": "75d367961807fff8e81f556da81dec24.svg", + "name": "Dani", + "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg", "type": "sprite", - "tags": [ - "animals", - "dinosaur", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 4, + 3, 1 ], "json": { - "objName": "Dinosaur1", + "objName": "Dani", "sounds": [ { "soundName": "pop", @@ -2001,66 +2675,54 @@ ], "costumes": [ { - "costumeName": "dinosaur1-a", - "baseLayerID": -1, - "baseLayerMD5": "75d367961807fff8e81f556da81dec24.svg", - "bitmapResolution": 1, - "rotationCenterX": 98, - "rotationCenterY": 92 - }, - { - "costumeName": "dinosaur1-b", + "costumeName": "dani-a", "baseLayerID": -1, - "baseLayerMD5": "ecdaee9c08ae68fd7a67f81302f00a97.svg", + "baseLayerMD5": "f3038fb0f4a00806b02081c6789dd8cf.svg", "bitmapResolution": 1, - "rotationCenterX": 98, - "rotationCenterY": 47 + "rotationCenterX": 49, + "rotationCenterY": 115 }, { - "costumeName": "dinosaur1-c", + "costumeName": "dani-b", "baseLayerID": -1, - "baseLayerMD5": "02078a81abd2e10cb62ebcc853a40c92.svg", + "baseLayerMD5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg", "bitmapResolution": 1, - "rotationCenterX": 81, - "rotationCenterY": 91 + "rotationCenterX": 82, + "rotationCenterY": 115 }, { - "costumeName": "dinosaur1-d", + "costumeName": "dani-c", "baseLayerID": -1, - "baseLayerMD5": "c9ed031bc9bf11416142880f89436be9.svg", + "baseLayerMD5": "cbc5f9c67022af201d498bc9b35608b8.svg", "bitmapResolution": 1, - "rotationCenterX": 98, - "rotationCenterY": 91 + "rotationCenterX": 49, + "rotationCenterY": 113 } ], "currentCostumeIndex": 0, - "scratchX": -138, - "scratchY": -51, + "scratchX": -90, + "scratchY": -11, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 1, + "indexInLibrary": 14, "visible": true, "spriteInfo": {} } }, { - "name": "Dinosaur2", - "md5": "5493f5deffe7aed451cd8b255740de4a.svg", + "name": "Dee", + "md5": "aa239b7ccdce6bddf06900c709525764.svg", "type": "sprite", - "tags": [ - "animals", - "dinosaur", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 4, + 5, 1 ], "json": { - "objName": "Dinosaur2", + "objName": "Dee", "sounds": [ { "soundName": "pop", @@ -2073,33 +2735,253 @@ ], "costumes": [ { - "costumeName": "dinosaur2-a", + "costumeName": "dee-a", "baseLayerID": -1, - "baseLayerMD5": "5493f5deffe7aed451cd8b255740de4a.svg", + "baseLayerMD5": "aa239b7ccdce6bddf06900c709525764.svg", "bitmapResolution": 1, - "rotationCenterX": 115, - "rotationCenterY": 72 + "rotationCenterX": 52, + "rotationCenterY": 99 }, { - "costumeName": "dinosaur2-b", + "costumeName": "dee-b", "baseLayerID": -1, - "baseLayerMD5": "70bba739b7df0bd08abb31026d078ee7.svg", + "baseLayerMD5": "62b4ac1b735599e21af77c390b178095.svg", "bitmapResolution": 1, - "rotationCenterX": 74, - "rotationCenterY": 67 + "rotationCenterX": 33, + "rotationCenterY": 99 }, { - "costumeName": "dinosaur2-c", + "costumeName": "dee-c", "baseLayerID": -1, - "baseLayerMD5": "4a51679d86aafcc9cee1c010fc141288.svg", + "baseLayerMD5": "6aa6196ce3245e93b8d1299f33adffcd.svg", "bitmapResolution": 1, - "rotationCenterX": 62, - "rotationCenterY": 67 + "rotationCenterX": 36, + "rotationCenterY": 102 }, { - "costumeName": "dinosaur2-d", + "costumeName": "dee-d", "baseLayerID": -1, - "baseLayerMD5": "47053664449b24749aaf199925b19f8e.svg", + "baseLayerMD5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 99 + }, + { + "costumeName": "dee-e", + "baseLayerID": -1, + "baseLayerMD5": "e358d2a7e3a0a680928657161ce81a0a.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 99 + } + ], + "currentCostumeIndex": 0, + "scratchX": 84, + "scratchY": -39, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 15, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Devin", + "md5": "b1897e56265470b55fa65fabe2423c55.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Devin", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "devin-a", + "baseLayerID": -1, + "baseLayerMD5": "b1897e56265470b55fa65fabe2423c55.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 95 + }, + { + "costumeName": "devin-b", + "baseLayerID": -1, + "baseLayerMD5": "873fbd641768c8f753a6568da97633e7.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 96 + }, + { + "costumeName": "devin-c", + "baseLayerID": -1, + "baseLayerMD5": "eac3c03d86cebb42c8f30e373cb7f623.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 95 + }, + { + "costumeName": "devin-d", + "baseLayerID": -1, + "baseLayerMD5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg", + "bitmapResolution": 1, + "rotationCenterX": 41, + "rotationCenterY": 95 + } + ], + "currentCostumeIndex": 0, + "scratchX": 82, + "scratchY": -18, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 16, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dinosaur1", + "md5": "75d367961807fff8e81f556da81dec24.svg", + "type": "sprite", + "tags": [ + "animals", + "dinosaur", + "alex eben meyer" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Dinosaur1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "dinosaur1-a", + "baseLayerID": -1, + "baseLayerMD5": "75d367961807fff8e81f556da81dec24.svg", + "bitmapResolution": 1, + "rotationCenterX": 98, + "rotationCenterY": 92 + }, + { + "costumeName": "dinosaur1-b", + "baseLayerID": -1, + "baseLayerMD5": "ecdaee9c08ae68fd7a67f81302f00a97.svg", + "bitmapResolution": 1, + "rotationCenterX": 98, + "rotationCenterY": 47 + }, + { + "costumeName": "dinosaur1-c", + "baseLayerID": -1, + "baseLayerMD5": "02078a81abd2e10cb62ebcc853a40c92.svg", + "bitmapResolution": 1, + "rotationCenterX": 81, + "rotationCenterY": 91 + }, + { + "costumeName": "dinosaur1-d", + "baseLayerID": -1, + "baseLayerMD5": "c9ed031bc9bf11416142880f89436be9.svg", + "bitmapResolution": 1, + "rotationCenterX": 98, + "rotationCenterY": 91 + } + ], + "currentCostumeIndex": 0, + "scratchX": -138, + "scratchY": -51, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 1, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dinosaur2", + "md5": "5493f5deffe7aed451cd8b255740de4a.svg", + "type": "sprite", + "tags": [ + "animals", + "dinosaur", + "alex eben meyer" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Dinosaur2", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "dinosaur2-a", + "baseLayerID": -1, + "baseLayerMD5": "5493f5deffe7aed451cd8b255740de4a.svg", + "bitmapResolution": 1, + "rotationCenterX": 115, + "rotationCenterY": 72 + }, + { + "costumeName": "dinosaur2-b", + "baseLayerID": -1, + "baseLayerMD5": "70bba739b7df0bd08abb31026d078ee7.svg", + "bitmapResolution": 1, + "rotationCenterX": 74, + "rotationCenterY": 67 + }, + { + "costumeName": "dinosaur2-c", + "baseLayerID": -1, + "baseLayerMD5": "4a51679d86aafcc9cee1c010fc141288.svg", + "bitmapResolution": 1, + "rotationCenterX": 62, + "rotationCenterY": 67 + }, + { + "costumeName": "dinosaur2-d", + "baseLayerID": -1, + "baseLayerMD5": "47053664449b24749aaf199925b19f8e.svg", "bitmapResolution": 1, "rotationCenterX": 71, "rotationCenterY": 66 @@ -2658,6 +3540,58 @@ "spriteInfo": {} } }, + { + "name": "Dove", + "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Dove", + "sounds": [ + { + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "dove-a", + "baseLayerID": -1, + "baseLayerMD5": "6dde2b880ad6ddeaea2a53821befb86d.svg", + "bitmapResolution": 1, + "rotationCenterX": 86, + "rotationCenterY": 59 + }, + { + "costumeName": "dove-b", + "baseLayerID": -1, + "baseLayerMD5": "1c0bc118044d7f6033bc9cd1ef555590.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 57 + } + ], + "currentCostumeIndex": 0, + "scratchX": -71, + "scratchY": 24, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 17, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Dragon", "md5": "8aed65cee4cfe22b4f4b8e749092dbbb.svg", @@ -3122,16 +4056,60 @@ } }, { - "name": "Egg", - "md5": "bc723738dfe626c5c3bb90970d985961.svg", + "name": "Earth", + "md5": "814197522984a302972998b1a7f92d91.svg", "type": "sprite", - "tags": [ - "food", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 5, + 1, + 1 + ], + "json": { + "objName": "Earth", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "earth", + "baseLayerID": -1, + "baseLayerMD5": "814197522984a302972998b1a7f92d91.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 57, + "scratchY": -39, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 18, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Egg", + "md5": "bc723738dfe626c5c3bb90970d985961.svg", + "type": "sprite", + "tags": [ + "food", + "alex eben meyer" + ], + "info": [ + 0, + 5, 1 ], "json": { @@ -3635,6 +4613,50 @@ "spriteInfo": {} } }, + { + "name": "Fruit Salad", + "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Fruit Salad", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "fruitsalad", + "baseLayerID": -1, + "baseLayerMD5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 22 + } + ], + "currentCostumeIndex": 0, + "scratchX": 27, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 19, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Ghost1", "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", @@ -3731,6 +4753,58 @@ "spriteInfo": {} } }, + { + "name": "Gift", + "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Gift", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "gift-a", + "baseLayerID": -1, + "baseLayerMD5": "abeae2217b3ce67b1ff761cd7a89274d.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 25 + }, + { + "costumeName": "gift-b", + "baseLayerID": -1, + "baseLayerMD5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 26 + } + ], + "currentCostumeIndex": 0, + "scratchX": 26, + "scratchY": 28, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 20, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Giga", "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", @@ -3800,22 +4874,17 @@ } }, { - "name": "Goalie", - "md5": "86b0610ea21fdecb99795c5e6d52768c.svg", + "name": "Giga Walking", + "md5": "f76bc420011db2cdb2de378c1536f6da.svg", "type": "sprite", - "tags": [ - "sports", - "soccer", - "football", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 5, + 4, 1 ], "json": { - "objName": "Goalie", + "objName": "Giga Walking", "sounds": [ { "soundName": "pop", @@ -3828,73 +4897,62 @@ ], "costumes": [ { - "costumeName": "goalie-a", - "baseLayerID": -1, - "baseLayerMD5": "86b0610ea21fdecb99795c5e6d52768c.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "goalie-b", + "costumeName": "Giga walk1", "baseLayerID": -1, - "baseLayerMD5": "af3ef5125d187772240a1120e7eb67ac.svg", + "baseLayerMD5": "f76bc420011db2cdb2de378c1536f6da.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 70, + "rotationCenterY": 107 }, { - "costumeName": "goalie-c", + "costumeName": "Giga walk2", "baseLayerID": -1, - "baseLayerMD5": "7c9377cedae11a094d2e77bed3edb884.svg", + "baseLayerMD5": "43b5874e8a54f93bd02727f0abf6905b.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 71, + "rotationCenterY": 107 }, { - "costumeName": "goalie-d", + "costumeName": "Giga walk3", "baseLayerID": -1, - "baseLayerMD5": "bd628034d356d30b0e9b563447471290.svg", + "baseLayerMD5": "9aab3bbb375765391978be4f6d478ab3.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 71, + "rotationCenterY": 107 }, { - "costumeName": "goalie-e", + "costumeName": "Giga walk4", "baseLayerID": -1, - "baseLayerMD5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg", + "baseLayerMD5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 73, + "rotationCenterY": 110 } ], "currentCostumeIndex": 0, - "scratchX": -5, - "scratchY": 39, + "scratchX": -95, + "scratchY": 0, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 1, + "indexInLibrary": 21, "visible": true, "spriteInfo": {} } }, { - "name": "Goblin", - "md5": "f10eaedff51f50f0809a7b4b310337fa.svg", + "name": "Glass Water", + "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", "type": "sprite", - "tags": [ - "fantasy", - "ipzy" - ], + "tags": [], "info": [ 0, - 4, + 2, 1 ], "json": { - "objName": "Goblin", + "objName": "Glass Water", "sounds": [ { "soundName": "pop", @@ -3907,62 +4965,46 @@ ], "costumes": [ { - "costumeName": "goblin-a", - "baseLayerID": -1, - "baseLayerMD5": "f10eaedff51f50f0809a7b4b310337fa.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 80 - }, - { - "costumeName": "goblin-b", - "baseLayerID": -1, - "baseLayerMD5": "71e7c77d89299cd99739b1216fc03a85.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 80 - }, - { - "costumeName": "goblin-c", + "costumeName": "glass water-a", "baseLayerID": -1, - "baseLayerMD5": "ab0611427d6f9b54d83672cf9e554876.svg", + "baseLayerMD5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 80 + "rotationCenterX": 39, + "rotationCenterY": 48 }, { - "costumeName": "goblin-d", + "costumeName": "glass water-b", "baseLayerID": -1, - "baseLayerMD5": "87dd413e7a8545bea9b3da208a5d5735.svg", + "baseLayerMD5": "bc07ce6a2004ac91ce704531a1c526e5.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 80 + "rotationCenterX": 39, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, - "scratchX": 123, - "scratchY": -66, - "scale": 1, + "scratchX": 43, + "scratchY": -10, + "scale": 0.6, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 8, + "indexInLibrary": 22, "visible": true, "spriteInfo": {} } }, { - "name": "Gobo", - "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "name": "Glasses", + "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg", "type": "sprite", "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Gobo", + "objName": "Glasses", "sounds": [ { "soundName": "pop", @@ -3975,48 +5017,288 @@ ], "costumes": [ { - "costumeName": "gobo-a", - "baseLayerID": -1, - "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 55 - }, - { - "costumeName": "gobo-b", - "baseLayerID": -1, - "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 55 - }, - { - "costumeName": "gobo-c", + "costumeName": "glasses", "baseLayerID": -1, - "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg", + "baseLayerMD5": "5fcf716b53f223bc86b10ab0eca3e162.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 55 + "rotationCenterX": 16, + "rotationCenterY": 9 } ], "currentCostumeIndex": 0, - "scratchX": -33, - "scratchY": 25, + "scratchX": 65, + "scratchY": 6, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 46, + "isDraggable": true, + "indexInLibrary": 23, "visible": true, "spriteInfo": {} } }, { - "name": "Griffin", - "md5": "d2ddc25b224ad72240f92e632afc7c69.svg", + "name": "Goalie", + "md5": "86b0610ea21fdecb99795c5e6d52768c.svg", "type": "sprite", "tags": [ - "fantasy", + "sports", + "soccer", + "football", + "alex eben meyer" + ], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Goalie", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "goalie-a", + "baseLayerID": -1, + "baseLayerMD5": "86b0610ea21fdecb99795c5e6d52768c.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "goalie-b", + "baseLayerID": -1, + "baseLayerMD5": "af3ef5125d187772240a1120e7eb67ac.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "goalie-c", + "baseLayerID": -1, + "baseLayerMD5": "7c9377cedae11a094d2e77bed3edb884.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "goalie-d", + "baseLayerID": -1, + "baseLayerMD5": "bd628034d356d30b0e9b563447471290.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "goalie-e", + "baseLayerID": -1, + "baseLayerMD5": "b3f6c4c0be9a0f71e9486dea51e513c3.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": -5, + "scratchY": 39, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 1, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Goblin", + "md5": "f10eaedff51f50f0809a7b4b310337fa.svg", + "type": "sprite", + "tags": [ + "fantasy", + "ipzy" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Goblin", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "goblin-a", + "baseLayerID": -1, + "baseLayerMD5": "f10eaedff51f50f0809a7b4b310337fa.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 80 + }, + { + "costumeName": "goblin-b", + "baseLayerID": -1, + "baseLayerMD5": "71e7c77d89299cd99739b1216fc03a85.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 80 + }, + { + "costumeName": "goblin-c", + "baseLayerID": -1, + "baseLayerMD5": "ab0611427d6f9b54d83672cf9e554876.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 80 + }, + { + "costumeName": "goblin-d", + "baseLayerID": -1, + "baseLayerMD5": "87dd413e7a8545bea9b3da208a5d5735.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 80 + } + ], + "currentCostumeIndex": 0, + "scratchX": 123, + "scratchY": -66, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 8, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Gobo", + "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Gobo", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "gobo-a", + "baseLayerID": -1, + "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 + }, + { + "costumeName": "gobo-b", + "baseLayerID": -1, + "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 + }, + { + "costumeName": "gobo-c", + "baseLayerID": -1, + "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 + } + ], + "currentCostumeIndex": 0, + "scratchX": -33, + "scratchY": 25, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 46, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Green Flag", + "md5": "173e20ac537d2c278ed621be3db3fc87.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Green Flag", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "green flag", + "baseLayerID": -1, + "baseLayerMD5": "173e20ac537d2c278ed621be3db3fc87.svg", + "bitmapResolution": 1, + "rotationCenterX": 70, + "rotationCenterY": 30 + } + ], + "currentCostumeIndex": 0, + "scratchX": -36, + "scratchY": 39, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 24, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Griffin", + "md5": "d2ddc25b224ad72240f92e632afc7c69.svg", + "type": "sprite", + "tags": [ + "fantasy", "animals", "ipzy" ], @@ -4457,20 +5739,17 @@ } }, { - "name": "Hedgehog", - "md5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg", + "name": "Hat", + "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg", "type": "sprite", - "tags": [ - "animals", - "daria skrybchencko" - ], + "tags": [], "info": [ 0, - 5, + 1, 1 ], "json": { - "objName": "Hedgehog", + "objName": "Hat", "sounds": [ { "soundName": "pop", @@ -4483,187 +5762,126 @@ ], "costumes": [ { - "costumeName": "hedgehog-a", - "baseLayerID": -1, - "baseLayerMD5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 56 - }, - { - "costumeName": "hedgehog-b", - "baseLayerID": -1, - "baseLayerMD5": "4d3ccc06660e07b55bd38246e1f82f7f.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 56 - }, - { - "costumeName": "hedgehog-c", - "baseLayerID": -1, - "baseLayerMD5": "2446f79c0f553594cfbcdbe6b1e459a5.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 56 - }, - { - "costumeName": "hedgehog-d", - "baseLayerID": -1, - "baseLayerMD5": "bdb7c8e86125092da0c4848d1ffd901c.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 56 - }, - { - "costumeName": "hedgehog-e", + "costumeName": "Hat", "baseLayerID": -1, - "baseLayerMD5": "78a0e3789f6d778e20f9bf3d308a0b19.svg", + "baseLayerMD5": "b3beb1f52d371428d70b65a0c4c5c001.svg", "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 45 + "rotationCenterX": 52, + "rotationCenterY": 60 } ], "currentCostumeIndex": 0, - "scratchX": -134, - "scratchY": -77, + "scratchX": -15, + "scratchY": 7, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 1, + "isDraggable": true, + "indexInLibrary": 25, "visible": true, "spriteInfo": {} } }, { - "name": "Hippo1", - "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", + "name": "Hat Beanie", + "md5": "3271da33e4108ed08a303c2244739fbf.svg", "type": "sprite", "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Hippo1", + "objName": "Hat Beanie", "sounds": [ { - "soundName": "meow", + "soundName": "pop", "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "hippo1-a", - "baseLayerID": -1, - "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 65 - }, - { - "costumeName": "hippo1-b", + "costumeName": "hat beanie", "baseLayerID": -1, - "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", + "baseLayerMD5": "3271da33e4108ed08a303c2244739fbf.svg", "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 68 + "rotationCenterX": 28, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, - "scratchX": 59, - "scratchY": 37, + "scratchX": 40, + "scratchY": 22, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 48, + "isDraggable": true, + "indexInLibrary": 26, "visible": true, "spriteInfo": {} } }, { - "name": "Horse1", - "md5": "32f4d80477cd070cb0848e555d374060.svg", + "name": "Hat Party1", + "md5": "70a7f535d8857cf9175492415361c361.svg", "type": "sprite", "tags": [], "info": [ 0, - 2, - 2 + 1, + 1 ], "json": { - "objName": "Horse1", + "objName": "Hat Party1", "sounds": [ { - "soundName": "horse", - "soundID": -1, - "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", - "sampleCount": 14464, - "rate": 11025, - "format": "" - }, - { - "soundName": "horse gallop", + "soundName": "pop", "soundID": -1, - "md5": "058a34b5fb8b57178b5322d994b6b8c8.wav", - "sampleCount": 38336, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "horse1-a", - "baseLayerID": -1, - "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg", - "bitmapResolution": 1, - "rotationCenterX": 119, - "rotationCenterY": 83 - }, - { - "costumeName": "horse1-b", + "costumeName": "partyhat1", "baseLayerID": -1, - "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", + "baseLayerMD5": "70a7f535d8857cf9175492415361c361.svg", "bitmapResolution": 1, - "rotationCenterX": 103, - "rotationCenterY": 97 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": -4, - "scratchY": -26, + "scratchX": 27, + "scratchY": 26, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 49, + "indexInLibrary": 27, "visible": true, "spriteInfo": {} } }, { - "name": "Jamie", - "md5": "90f9166fe6500d0c0caad8b1964d6b74.svg", + "name": "Hat Party2", + "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg", "type": "sprite", - "tags": [ - "sports", - "basketball", - "people", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Jamie", + "objName": "Hat Party2", "sounds": [ { "soundName": "pop", @@ -4676,65 +5894,38 @@ ], "costumes": [ { - "costumeName": "jamie-a", - "baseLayerID": -1, - "baseLayerMD5": "90f9166fe6500d0c0caad8b1964d6b74.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 105 - }, - { - "costumeName": "jamie-b", - "baseLayerID": -1, - "baseLayerMD5": "c3d96ef7e99440c2fa76effce1235d3f.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 105 - }, - { - "costumeName": "jamie-c", - "baseLayerID": -1, - "baseLayerMD5": "1fb8b9ca79f2c0a327913bd647b53fe5.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 105 - }, - { - "costumeName": "jamie-d", + "costumeName": "hat party2-a", "baseLayerID": -1, - "baseLayerMD5": "4adb87e6123161fcaf02f7ac022a5757.svg", + "baseLayerMD5": "9b7a84fe3e50621752917e4e484a1e2f.svg", "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 105 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 56, - "scratchY": 37, + "scratchX": -80, + "scratchY": -31, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 28, "visible": true, "spriteInfo": {} } }, { - "name": "Jar", - "md5": "73784b267083733e08bcf06aa7d6536a.svg", + "name": "Hat Winter", + "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", "type": "sprite", - "tags": [ - "food", - "ipzy" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Jar", + "objName": "Hat Winter", "sounds": [ { "soundName": "pop", @@ -4747,50 +5938,38 @@ ], "costumes": [ { - "costumeName": "jar-a", - "baseLayerID": -1, - "baseLayerMD5": "73784b267083733e08bcf06aa7d6536a.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "jar-b", + "costumeName": "hat winter", "baseLayerID": -1, - "baseLayerMD5": "a37eb72115966a75bc1bf521deeccc0c.svg", + "baseLayerMD5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 + "rotationCenterX": 26, + "rotationCenterY": 101 } ], "currentCostumeIndex": 0, - "scratchX": 9, - "scratchY": -11, - "scale": 1, + "scratchX": -30, + "scratchY": -42, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 21, + "indexInLibrary": 29, "visible": true, "spriteInfo": {} } }, { - "name": "Jellyfish", - "md5": "9e6563e417350af3094c2ed02b9b0bbd.svg", + "name": "Hat Wizard", + "md5": "581571e8c8f5adeb01565e12b1b77b58.svg", "type": "sprite", - "tags": [ - "animals", - "ocean", - "daria skrybchencko" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Jellyfish", + "objName": "Hat Wizard", "sounds": [ { "soundName": "pop", @@ -4803,68 +5982,38 @@ ], "costumes": [ { - "costumeName": "jellyfish-a", - "baseLayerID": -1, - "baseLayerMD5": "9e6563e417350af3094c2ed02b9b0bbd.svg", - "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 86 - }, - { - "costumeName": "jellyfish-b", - "baseLayerID": -1, - "baseLayerMD5": "31a42fad0891f1298c522a6d5008930a.svg", - "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 86 - }, - { - "costumeName": "jellyfish-c", - "baseLayerID": -1, - "baseLayerMD5": "697262d9ed04467bae52cca786c36bd3.svg", - "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 86 - }, - { - "costumeName": "jellyfish-d", + "costumeName": "hat wizard", "baseLayerID": -1, - "baseLayerMD5": "6a949493aaf62954f1c74f8369d494c4.svg", + "baseLayerMD5": "581571e8c8f5adeb01565e12b1b77b58.svg", "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 86 + "rotationCenterX": 76, + "rotationCenterY": 69 } ], "currentCostumeIndex": 0, - "scratchX": -163, - "scratchY": 99, - "scale": 0.8, + "scratchX": -7, + "scratchY": 6, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 2, + "indexInLibrary": 30, "visible": true, "spriteInfo": {} } }, { - "name": "Jordyn", - "md5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg", + "name": "Headband", + "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg", "type": "sprite", - "tags": [ - "sports", - "soccer", - "football", - "people", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Jordyn", + "objName": "Headband", "sounds": [ { "soundName": "pop", @@ -4877,173 +6026,90 @@ ], "costumes": [ { - "costumeName": "jordyn-a", - "baseLayerID": -1, - "baseLayerMD5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "jordyn-b", - "baseLayerID": -1, - "baseLayerMD5": "9665f543147961551d8dc6f612d9cc41.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "jordyn-c", - "baseLayerID": -1, - "baseLayerMD5": "ec8c2286070c77ebd9dd40c96eaae3fc.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "jordyn-d", + "costumeName": "headband", "baseLayerID": -1, - "baseLayerMD5": "1f9ed7f29800f31ce2ee53196143a3c8.svg", + "baseLayerMD5": "961148d1605a1bd8ce80ed8d39e831c2.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 53, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, - "scratchX": -164, - "scratchY": -41, + "scratchX": 86, + "scratchY": -38, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 2, + "isDraggable": true, + "indexInLibrary": 31, "visible": true, "spriteInfo": {} } }, { - "name": "Keyboard", - "md5": "c67d180e964926b6393ac14781541b39.svg", + "name": "Heart", + "md5": "6e79e087c866a016f99ee482e1aeba47.svg", "type": "sprite", - "tags": [ - "music", - "andrew rae" - ], + "tags": [], "info": [ 0, 2, - 8 + 1 ], "json": { - "objName": "Keyboard", + "objName": "Heart", "sounds": [ { - "soundName": "C elec piano", - "soundID": -1, - "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "D elec piano", - "soundID": -1, - "md5": "835f136ca8d346a17b4d4baf8405be37.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "E elec piano", - "soundID": -1, - "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "F elec piano", - "soundID": -1, - "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "G elec piano", - "soundID": -1, - "md5": "39525f6545d62a95d05153f92d63301a.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "A elec piano", - "soundID": -1, - "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "B elec piano", - "soundID": -1, - "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 elec piano", + "soundName": "pop", "soundID": -1, - "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", - "sampleCount": 44100, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "keyboard-a", + "costumeName": "heart red", "baseLayerID": -1, - "baseLayerMD5": "c67d180e964926b6393ac14781541b39.svg", + "baseLayerMD5": "6e79e087c866a016f99ee482e1aeba47.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 68 + "rotationCenterX": 65, + "rotationCenterY": 56 }, { - "costumeName": "keyboard-b", + "costumeName": "heart purple", "baseLayerID": -1, - "baseLayerMD5": "dbaf62b33de45093c3c7d13b5d49d637.svg", + "baseLayerMD5": "b15362bb6b02a59e364db9081ccf19aa.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 68 + "rotationCenterX": 66, + "rotationCenterY": 62 } ], "currentCostumeIndex": 0, - "scratchX": 135, - "scratchY": -90, - "scale": 1, + "scratchX": -31, + "scratchY": 40, + "scale": 0.55, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 12, + "indexInLibrary": 32, "visible": true, "spriteInfo": {} } }, { - "name": "Kiran", - "md5": "9de23c4a7a7fbb67136b539241346854.svg", + "name": "Heart Candy", + "md5": "d448acd247f10f32bef7823cd433f928.svg", "type": "sprite", "tags": [], "info": [ 0, - 6, + 4, 1 ], "json": { - "objName": "Kiran", + "objName": "Heart Candy", "sounds": [ { "soundName": "pop", @@ -5056,69 +6122,53 @@ ], "costumes": [ { - "costumeName": "kiran-a", - "baseLayerID": -1, - "baseLayerMD5": "9de23c4a7a7fbb67136b539241346854.svg", - "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 95 - }, - { - "costumeName": "kiran-b", - "baseLayerID": -1, - "baseLayerMD5": "f1e74f3c02333e9e2068e8baf4e77aa0.svg", - "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 95 - }, - { - "costumeName": "kiran-c", + "costumeName": "heart love it", "baseLayerID": -1, - "baseLayerMD5": "e2482cf509c312935f08be0e2e2c9d84.svg", + "baseLayerMD5": "d448acd247f10f32bef7823cd433f928.svg", "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 95 + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "costumeName": "kiran-d", + "costumeName": "heart code", "baseLayerID": -1, - "baseLayerMD5": "569e736b519199efddfbae2572f7e92b.svg", + "baseLayerMD5": "497c5df9e02467202ff93096dccaf91f.svg", "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 95 + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "costumeName": "kiran-e", + "costumeName": "heart sweet", "baseLayerID": -1, - "baseLayerMD5": "2261bed0f2cc819def17969158297b4f.svg", + "baseLayerMD5": "a39d78d33b051e8b12a4b2a10d77b249.svg", "bitmapResolution": 1, - "rotationCenterX": 77, - "rotationCenterY": 95 + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "costumeName": "kiran-f", + "costumeName": "heart smile", "baseLayerID": -1, - "baseLayerMD5": "d7f44adb3dc7906b9dfb3599a028e0d6.svg", + "baseLayerMD5": "74a8f75d139d330b715787edbbacd83d.svg", "bitmapResolution": 1, - "rotationCenterX": 62, - "rotationCenterY": 94 + "rotationCenterX": 58, + "rotationCenterY": 61 } ], "currentCostumeIndex": 0, - "scratchX": 57, - "scratchY": -42, - "scale": 0.8, + "scratchX": -24, + "scratchY": -4, + "scale": 0.55, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 33, "visible": true, "spriteInfo": {} } }, { - "name": "Knight", - "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "name": "Heart Face", + "md5": "4ab84263da32069cf97cc0fa52729a0d.svg", "type": "sprite", "tags": [], "info": [ @@ -5127,7 +6177,7 @@ 1 ], "json": { - "objName": "Knight", + "objName": "Heart Face", "sounds": [ { "soundName": "pop", @@ -5140,38 +6190,41 @@ ], "costumes": [ { - "costumeName": "knight", + "costumeName": "heart face", "baseLayerID": -1, - "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "baseLayerMD5": "4ab84263da32069cf97cc0fa52729a0d.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 59, + "rotationCenterY": 52 } ], "currentCostumeIndex": 0, - "scratchX": 90, - "scratchY": -18, - "scale": 1, + "scratchX": 50, + "scratchY": 39, + "scale": 0.55, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 28, + "indexInLibrary": 34, "visible": true, "spriteInfo": {} } }, { - "name": "Ladybug1", - "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "name": "Hedgehog", + "md5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg", "type": "sprite", - "tags": [], + "tags": [ + "animals", + "daria skrybchencko" + ], "info": [ 0, - 1, + 5, 1 ], "json": { - "objName": "Ladybug1", + "objName": "Hedgehog", "sounds": [ { "soundName": "pop", @@ -5184,29 +6237,61 @@ ], "costumes": [ { - "costumeName": "ladybug2", + "costumeName": "hedgehog-a", "baseLayerID": -1, - "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "baseLayerMD5": "32416e6b2ef8e45fb5fd10778c1b9a9f.svg", "bitmapResolution": 1, - "rotationCenterX": 41, - "rotationCenterY": 43 + "rotationCenterX": 71, + "rotationCenterY": 56 + }, + { + "costumeName": "hedgehog-b", + "baseLayerID": -1, + "baseLayerMD5": "4d3ccc06660e07b55bd38246e1f82f7f.svg", + "bitmapResolution": 1, + "rotationCenterX": 71, + "rotationCenterY": 56 + }, + { + "costumeName": "hedgehog-c", + "baseLayerID": -1, + "baseLayerMD5": "2446f79c0f553594cfbcdbe6b1e459a5.svg", + "bitmapResolution": 1, + "rotationCenterX": 71, + "rotationCenterY": 56 + }, + { + "costumeName": "hedgehog-d", + "baseLayerID": -1, + "baseLayerMD5": "bdb7c8e86125092da0c4848d1ffd901c.svg", + "bitmapResolution": 1, + "rotationCenterX": 71, + "rotationCenterY": 56 + }, + { + "costumeName": "hedgehog-e", + "baseLayerID": -1, + "baseLayerMD5": "78a0e3789f6d778e20f9bf3d308a0b19.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 45 } ], "currentCostumeIndex": 0, - "scratchX": -90, - "scratchY": 42, + "scratchX": -134, + "scratchY": -77, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 29, + "indexInLibrary": 1, "visible": true, "spriteInfo": {} } }, { - "name": "Lion", - "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "name": "Hippo1", + "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "type": "sprite", "tags": [], "info": [ @@ -5215,7 +6300,7 @@ 1 ], "json": { - "objName": "Lion", + "objName": "Hippo1", "sounds": [ { "soundName": "meow", @@ -5228,49 +6313,46 @@ ], "costumes": [ { - "costumeName": "lion-a", + "costumeName": "hippo1-a", "baseLayerID": -1, - "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 69, + "rotationCenterY": 65 }, { - "costumeName": "lion-b", + "costumeName": "hippo1-b", "baseLayerID": -1, - "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg", + "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 69, + "rotationCenterY": 68 } ], - "currentCostumeIndex": 1, - "scratchX": 8, - "scratchY": 36, + "currentCostumeIndex": 0, + "scratchX": 59, + "scratchY": 37, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 50, + "indexInLibrary": 48, "visible": true, "spriteInfo": {} } }, { - "name": "Llama", - "md5": "07158eb6d62e309bb60a6bc36baf2300.svg", + "name": "Home Button", + "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg", "type": "sprite", - "tags": [ - "animals", - "robert hunter" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Llama", + "objName": "Home Button", "sounds": [ { "soundName": "pop", @@ -5283,45 +6365,89 @@ ], "costumes": [ { - "costumeName": "llama", + "costumeName": "home button", "baseLayerID": -1, - "baseLayerMD5": "07158eb6d62e309bb60a6bc36baf2300.svg", + "baseLayerMD5": "1bac530a0701a8fc88bb0802ae6787a3.svg", "bitmapResolution": 1, - "rotationCenterX": 100, - "rotationCenterY": 100 + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 42, + "scratchY": 42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 35, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Horse1", + "md5": "32f4d80477cd070cb0848e555d374060.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 2 + ], + "json": { + "objName": "Horse1", + "sounds": [ + { + "soundName": "horse", + "soundID": -1, + "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", + "sampleCount": 14464, + "rate": 11025, + "format": "" }, { - "costumeName": "llama-b", + "soundName": "horse gallop", + "soundID": -1, + "md5": "058a34b5fb8b57178b5322d994b6b8c8.wav", + "sampleCount": 38336, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "horse1-a", "baseLayerID": -1, - "baseLayerMD5": "2021eea71514bd2b23e96076750727ae.svg", + "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg", "bitmapResolution": 1, - "rotationCenterX": 100, - "rotationCenterY": 100 + "rotationCenterX": 119, + "rotationCenterY": 83 }, { - "costumeName": "llama-c", + "costumeName": "horse1-b", "baseLayerID": -1, - "baseLayerMD5": "7837d7247acbc4eebb793452a35aa1f5.svg", + "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", "bitmapResolution": 1, - "rotationCenterX": 100, - "rotationCenterY": 100 + "rotationCenterX": 103, + "rotationCenterY": 97 } ], "currentCostumeIndex": 0, - "scratchX": -143, - "scratchY": -14, + "scratchX": -4, + "scratchY": -26, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 2, + "indexInLibrary": 49, "visible": true, "spriteInfo": {} } }, { - "name": "Max", - "md5": "e10cca3bdbc09d039c2f937574f7a6ea.svg", + "name": "Jamie", + "md5": "90f9166fe6500d0c0caad8b1964d6b74.svg", "type": "sprite", "tags": [ "sports", @@ -5335,7 +6461,7 @@ 1 ], "json": { - "objName": "Max", + "objName": "Jamie", "sounds": [ { "soundName": "pop", @@ -5348,58 +6474,56 @@ ], "costumes": [ { - "costumeName": "max-a", + "costumeName": "jamie-a", "baseLayerID": -1, - "baseLayerMD5": "e10cca3bdbc09d039c2f937574f7a6ea.svg", + "baseLayerMD5": "90f9166fe6500d0c0caad8b1964d6b74.svg", "bitmapResolution": 1, "rotationCenterX": 82, - "rotationCenterY": 68 + "rotationCenterY": 105 }, { - "costumeName": "max-b", + "costumeName": "jamie-b", "baseLayerID": -1, - "baseLayerMD5": "6d8ee139a741cf945d600a8cef0ea2e6.svg", + "baseLayerMD5": "c3d96ef7e99440c2fa76effce1235d3f.svg", "bitmapResolution": 1, "rotationCenterX": 82, - "rotationCenterY": 68 + "rotationCenterY": 105 }, { - "costumeName": "max-c", + "costumeName": "jamie-c", "baseLayerID": -1, - "baseLayerMD5": "aa66109994d27de02711f6a0ef6de9ec.svg", + "baseLayerMD5": "1fb8b9ca79f2c0a327913bd647b53fe5.svg", "bitmapResolution": 1, "rotationCenterX": 82, - "rotationCenterY": 68 + "rotationCenterY": 105 }, { - "costumeName": "max-d", + "costumeName": "jamie-d", "baseLayerID": -1, - "baseLayerMD5": "a0dbf509d542c7eff6d2ddfc9c9410f1.svg", + "baseLayerMD5": "4adb87e6123161fcaf02f7ac022a5757.svg", "bitmapResolution": 1, "rotationCenterX": 82, - "rotationCenterY": 68 + "rotationCenterY": 105 } ], "currentCostumeIndex": 0, - "scratchX": 143, - "scratchY": -71, + "scratchX": 56, + "scratchY": 37, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 4, + "indexInLibrary": 3, "visible": true, "spriteInfo": {} } }, { - "name": "Mermaid", - "md5": "36db41c47259881c26d9b98a806d3308.svg", + "name": "Jar", + "md5": "73784b267083733e08bcf06aa7d6536a.svg", "type": "sprite", "tags": [ - "fantasy", - "people", - "underwater", + "food", "ipzy" ], "info": [ @@ -5408,7 +6532,7 @@ 1 ], "json": { - "objName": "Mermaid", + "objName": "Jar", "sounds": [ { "soundName": "pop", @@ -5421,51 +6545,46 @@ ], "costumes": [ { - "costumeName": "mermaid-a", + "costumeName": "jar-a", "baseLayerID": -1, - "baseLayerMD5": "36db41c47259881c26d9b98a806d3308.svg", + "baseLayerMD5": "73784b267083733e08bcf06aa7d6536a.svg", "bitmapResolution": 1, - "rotationCenterX": 92, - "rotationCenterY": 130 + "rotationCenterX": 20, + "rotationCenterY": 25 }, { - "costumeName": "mermaid-b", + "costumeName": "jar-b", "baseLayerID": -1, - "baseLayerMD5": "564bf3f466df3b3e8aba71eeae8255ab.svg", + "baseLayerMD5": "a37eb72115966a75bc1bf521deeccc0c.svg", "bitmapResolution": 1, - "rotationCenterX": 92, - "rotationCenterY": 130 + "rotationCenterX": 20, + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, - "scratchX": -110, - "scratchY": -21, + "scratchX": 9, + "scratchY": -11, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 4, + "indexInLibrary": 21, "visible": true, "spriteInfo": {} } }, { - "name": "Mermaid-swimming", - "md5": "9f973b89b68f7d8147f157cbac8af341.svg", + "name": "Jeans", + "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg", "type": "sprite", - "tags": [ - "fantasy", - "people", - "underwater", - "ipzy" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Mermaid-swimming", + "objName": "Jeans", "sounds": [ { "soundName": "pop", @@ -5478,168 +6597,2857 @@ ], "costumes": [ { - "costumeName": "mermaid-swim-a", + "costumeName": "jeans-a", "baseLayerID": -1, - "baseLayerMD5": "9f973b89b68f7d8147f157cbac8af341.svg", + "baseLayerMD5": "4e283da8c59bcbb9803bdc0016b14c21.svg", "bitmapResolution": 1, - "rotationCenterX": 150, - "rotationCenterY": 115 + "rotationCenterX": 22, + "rotationCenterY": 25 }, { - "costumeName": "mermaid-swim-b", + "costumeName": "jeans-b", "baseLayerID": -1, - "baseLayerMD5": "2295784bb8e6354bfa7676089235cb9f.svg", + "baseLayerMD5": "01732aa03a48482093fbed3ea402c4a9.svg", "bitmapResolution": 1, - "rotationCenterX": 150, - "rotationCenterY": 115 + "rotationCenterX": 22, + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, - "scratchX": 141, - "scratchY": -8, + "scratchX": 69, + "scratchY": 26, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 5, + "isDraggable": true, + "indexInLibrary": 36, "visible": true, "spriteInfo": {} } }, { - "name": "Microphone", - "md5": "9126b6362313e20578fb88d38902cd4c.svg", + "name": "Jellyfish", + "md5": "9e6563e417350af3094c2ed02b9b0bbd.svg", "type": "sprite", "tags": [ - "music", - "andrew rae" + "animals", + "ocean", + "daria skrybchencko" ], "info": [ 0, - 2, - 9 + 4, + 1 ], "json": { - "objName": "Microphone", + "objName": "Jellyfish", "sounds": [ { - "soundName": "bass beatbox", + "soundName": "pop", "soundID": -1, - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "clap beatbox", - "soundID": -1, - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, - "rate": 22050, - "format": "" + "costumeName": "jellyfish-a", + "baseLayerID": -1, + "baseLayerMD5": "9e6563e417350af3094c2ed02b9b0bbd.svg", + "bitmapResolution": 1, + "rotationCenterX": 99, + "rotationCenterY": 86 }, { - "soundName": "hi beatbox", - "soundID": -1, - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, + "costumeName": "jellyfish-b", + "baseLayerID": -1, + "baseLayerMD5": "31a42fad0891f1298c522a6d5008930a.svg", + "bitmapResolution": 1, + "rotationCenterX": 99, + "rotationCenterY": 86 + }, + { + "costumeName": "jellyfish-c", + "baseLayerID": -1, + "baseLayerMD5": "697262d9ed04467bae52cca786c36bd3.svg", + "bitmapResolution": 1, + "rotationCenterX": 99, + "rotationCenterY": 86 + }, + { + "costumeName": "jellyfish-d", + "baseLayerID": -1, + "baseLayerMD5": "6a949493aaf62954f1c74f8369d494c4.svg", + "bitmapResolution": 1, + "rotationCenterX": 99, + "rotationCenterY": 86 + } + ], + "currentCostumeIndex": 0, + "scratchX": -163, + "scratchY": 99, + "scale": 0.8, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Jordyn", + "md5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg", + "type": "sprite", + "tags": [ + "sports", + "soccer", + "football", + "people", + "alex eben meyer" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Jordyn", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "jordyn-a", + "baseLayerID": -1, + "baseLayerMD5": "8dd2a2abbb8e639da8576b6e72ef9e59.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "jordyn-b", + "baseLayerID": -1, + "baseLayerMD5": "9665f543147961551d8dc6f612d9cc41.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "jordyn-c", + "baseLayerID": -1, + "baseLayerMD5": "ec8c2286070c77ebd9dd40c96eaae3fc.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "jordyn-d", + "baseLayerID": -1, + "baseLayerMD5": "1f9ed7f29800f31ce2ee53196143a3c8.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": -164, + "scratchY": -41, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Key", + "md5": "af35300cef35803e11f4ed744dc5e818.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Key", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "key", + "baseLayerID": -1, + "baseLayerMD5": "af35300cef35803e11f4ed744dc5e818.svg", + "bitmapResolution": 1, + "rotationCenterX": 42, + "rotationCenterY": 27 + } + ], + "currentCostumeIndex": 0, + "scratchX": -14, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 37, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Keyboard", + "md5": "c67d180e964926b6393ac14781541b39.svg", + "type": "sprite", + "tags": [ + "music", + "andrew rae" + ], + "info": [ + 0, + 2, + 8 + ], + "json": { + "objName": "Keyboard", + "sounds": [ + { + "soundName": "C elec piano", + "soundID": -1, + "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "scratch beatbox", + "soundName": "D elec piano", "soundID": -1, - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, + "md5": "835f136ca8d346a17b4d4baf8405be37.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "snare beatbox", + "soundName": "E elec piano", "soundID": -1, - "md5": "c642c4c00135d890998f351faec55498.wav", - "sampleCount": 5630, + "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", + "sampleCount": 44100, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "snare beatbox2", + "soundName": "F elec piano", "soundID": -1, - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, + "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "wah beatbox", + "soundName": "G elec piano", "soundID": -1, - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, + "md5": "39525f6545d62a95d05153f92d63301a.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "crash beatbox", + "soundName": "A elec piano", "soundID": -1, - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, + "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "B elec piano", + "soundID": -1, + "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "C2 elec piano", + "soundID": -1, + "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", + "sampleCount": 44100, "rate": 22050, "format": "" + } + ], + "costumes": [ + { + "costumeName": "keyboard-a", + "baseLayerID": -1, + "baseLayerMD5": "c67d180e964926b6393ac14781541b39.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 68 }, { - "soundName": "wub beatbox", + "costumeName": "keyboard-b", + "baseLayerID": -1, + "baseLayerMD5": "dbaf62b33de45093c3c7d13b5d49d637.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": 135, + "scratchY": -90, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 12, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Kiran", + "md5": "9de23c4a7a7fbb67136b539241346854.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 6, + 1 + ], + "json": { + "objName": "Kiran", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "kiran-a", + "baseLayerID": -1, + "baseLayerMD5": "9de23c4a7a7fbb67136b539241346854.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 95 + }, + { + "costumeName": "kiran-b", + "baseLayerID": -1, + "baseLayerMD5": "f1e74f3c02333e9e2068e8baf4e77aa0.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 95 + }, + { + "costumeName": "kiran-c", + "baseLayerID": -1, + "baseLayerMD5": "e2482cf509c312935f08be0e2e2c9d84.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 95 + }, + { + "costumeName": "kiran-d", + "baseLayerID": -1, + "baseLayerMD5": "569e736b519199efddfbae2572f7e92b.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 95 + }, + { + "costumeName": "kiran-e", + "baseLayerID": -1, + "baseLayerMD5": "2261bed0f2cc819def17969158297b4f.svg", + "bitmapResolution": 1, + "rotationCenterX": 77, + "rotationCenterY": 95 + }, + { + "costumeName": "kiran-f", + "baseLayerID": -1, + "baseLayerMD5": "d7f44adb3dc7906b9dfb3599a028e0d6.svg", + "bitmapResolution": 1, + "rotationCenterX": 62, + "rotationCenterY": 94 + } + ], + "currentCostumeIndex": 0, + "scratchX": 57, + "scratchY": -42, + "scale": 0.8, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 3, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Knight", + "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Knight", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "knight", + "baseLayerID": -1, + "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 90, + "scratchY": -18, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 28, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Ladybug1", + "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Ladybug1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "ladybug2", + "baseLayerID": -1, + "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "bitmapResolution": 1, + "rotationCenterX": 41, + "rotationCenterY": 43 + } + ], + "currentCostumeIndex": 0, + "scratchX": -90, + "scratchY": 42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 29, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Ladybug2", + "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Ladybug2", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "ladybug2-a", + "baseLayerID": -1, + "baseLayerMD5": "c018a3eed966d5f92c69f2188dfd2aae.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 28 + }, + { + "costumeName": "ladybug2-b", + "baseLayerID": -1, + "baseLayerMD5": "a2bb15ace808e070a2b815502952b292.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 28 + } + ], + "currentCostumeIndex": 0, + "scratchX": 26, + "scratchY": -3, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 38, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Laptop", + "md5": "76f456b30b98eeefd7c942b27b524e31.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Laptop", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "laptop", + "baseLayerID": -1, + "baseLayerMD5": "76f456b30b98eeefd7c942b27b524e31.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": -22, + "scratchY": 7, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 39, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Lightning", + "md5": "c2d636ab2b491e591536afc3d49cbecd.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Lightning", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "lightning", + "baseLayerID": -1, + "baseLayerMD5": "c2d636ab2b491e591536afc3d49cbecd.svg", + "bitmapResolution": 1, + "rotationCenterX": 21, + "rotationCenterY": 83 + } + ], + "currentCostumeIndex": 0, + "scratchX": 65, + "scratchY": 25, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 40, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Line", + "md5": "1b2cfb4d4746522aeb84e16a62820299.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Line", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "line", + "baseLayerID": -1, + "baseLayerMD5": "1b2cfb4d4746522aeb84e16a62820299.svg", + "bitmapResolution": 1, + "rotationCenterX": 239, + "rotationCenterY": 7 + } + ], + "currentCostumeIndex": 0, + "scratchX": 43, + "scratchY": -13, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 41, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Lion", + "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Lion", + "sounds": [ + { + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "lion-a", + "baseLayerID": -1, + "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "lion-b", + "baseLayerID": -1, + "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 1, + "scratchX": 8, + "scratchY": 36, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 50, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Llama", + "md5": "07158eb6d62e309bb60a6bc36baf2300.svg", + "type": "sprite", + "tags": [ + "animals", + "robert hunter" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Llama", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "llama", + "baseLayerID": -1, + "baseLayerMD5": "07158eb6d62e309bb60a6bc36baf2300.svg", + "bitmapResolution": 1, + "rotationCenterX": 100, + "rotationCenterY": 100 + }, + { + "costumeName": "llama-b", + "baseLayerID": -1, + "baseLayerMD5": "2021eea71514bd2b23e96076750727ae.svg", + "bitmapResolution": 1, + "rotationCenterX": 100, + "rotationCenterY": 100 + }, + { + "costumeName": "llama-c", + "baseLayerID": -1, + "baseLayerMD5": "7837d7247acbc4eebb793452a35aa1f5.svg", + "bitmapResolution": 1, + "rotationCenterX": 100, + "rotationCenterY": 100 + } + ], + "currentCostumeIndex": 0, + "scratchX": -143, + "scratchY": -14, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Magic Wand", + "md5": "3db9bfe57d561557795633c5cda44e8c.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Magic Wand", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "magicwand", + "baseLayerID": -1, + "baseLayerMD5": "3db9bfe57d561557795633c5cda44e8c.svg", + "bitmapResolution": 1, + "rotationCenterX": 41, + "rotationCenterY": 18 + } + ], + "currentCostumeIndex": 0, + "scratchX": 78, + "scratchY": 35, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 42, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Max", + "md5": "e10cca3bdbc09d039c2f937574f7a6ea.svg", + "type": "sprite", + "tags": [ + "sports", + "basketball", + "people", + "alex eben meyer" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Max", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "max-a", + "baseLayerID": -1, + "baseLayerMD5": "e10cca3bdbc09d039c2f937574f7a6ea.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 68 + }, + { + "costumeName": "max-b", + "baseLayerID": -1, + "baseLayerMD5": "6d8ee139a741cf945d600a8cef0ea2e6.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 68 + }, + { + "costumeName": "max-c", + "baseLayerID": -1, + "baseLayerMD5": "aa66109994d27de02711f6a0ef6de9ec.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 68 + }, + { + "costumeName": "max-d", + "baseLayerID": -1, + "baseLayerMD5": "a0dbf509d542c7eff6d2ddfc9c9410f1.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": 143, + "scratchY": -71, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 4, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Mermaid", + "md5": "36db41c47259881c26d9b98a806d3308.svg", + "type": "sprite", + "tags": [ + "fantasy", + "people", + "underwater", + "ipzy" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Mermaid", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "mermaid-a", + "baseLayerID": -1, + "baseLayerMD5": "36db41c47259881c26d9b98a806d3308.svg", + "bitmapResolution": 1, + "rotationCenterX": 92, + "rotationCenterY": 130 + }, + { + "costumeName": "mermaid-b", + "baseLayerID": -1, + "baseLayerMD5": "564bf3f466df3b3e8aba71eeae8255ab.svg", + "bitmapResolution": 1, + "rotationCenterX": 92, + "rotationCenterY": 130 + } + ], + "currentCostumeIndex": 0, + "scratchX": -110, + "scratchY": -21, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 4, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Mermaid-swimming", + "md5": "9f973b89b68f7d8147f157cbac8af341.svg", + "type": "sprite", + "tags": [ + "fantasy", + "people", + "underwater", + "ipzy" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Mermaid-swimming", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "mermaid-swim-a", + "baseLayerID": -1, + "baseLayerMD5": "9f973b89b68f7d8147f157cbac8af341.svg", + "bitmapResolution": 1, + "rotationCenterX": 150, + "rotationCenterY": 115 + }, + { + "costumeName": "mermaid-swim-b", + "baseLayerID": -1, + "baseLayerMD5": "2295784bb8e6354bfa7676089235cb9f.svg", + "bitmapResolution": 1, + "rotationCenterX": 150, + "rotationCenterY": 115 + } + ], + "currentCostumeIndex": 0, + "scratchX": 141, + "scratchY": -8, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 5, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Microphone", + "md5": "9126b6362313e20578fb88d38902cd4c.svg", + "type": "sprite", + "tags": [ + "music", + "andrew rae" + ], + "info": [ + 0, + 2, + 9 + ], + "json": { + "objName": "Microphone", + "sounds": [ + { + "soundName": "bass beatbox", + "soundID": -1, + "md5": "28153621d293c86da0b246d314458faf.wav", + "sampleCount": 6720, + "rate": 22050, + "format": "" + }, + { + "soundName": "clap beatbox", + "soundID": -1, + "md5": "abc70bb390f8e55f22f32265500d814a.wav", + "sampleCount": 4224, + "rate": 22050, + "format": "" + }, + { + "soundName": "hi beatbox", + "soundID": -1, + "md5": "5a07847bf246c227204728b05a3fc8f3.wav", + "sampleCount": 5856, + "rate": 22050, + "format": "" + }, + { + "soundName": "scratch beatbox", + "soundID": -1, + "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", + "sampleCount": 11552, + "rate": 22050, + "format": "" + }, + { + "soundName": "snare beatbox", + "soundID": -1, + "md5": "c642c4c00135d890998f351faec55498.wav", + "sampleCount": 5630, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "snare beatbox2", + "soundID": -1, + "md5": "7ede1382b578d8fc32850b48d082d914.wav", + "sampleCount": 4960, + "rate": 22050, + "format": "" + }, + { + "soundName": "wah beatbox", + "soundID": -1, + "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", + "sampleCount": 6624, + "rate": 22050, + "format": "" + }, + { + "soundName": "crash beatbox", + "soundID": -1, + "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", + "sampleCount": 26883, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub beatbox", + "soundID": -1, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "microphone-a", + "baseLayerID": -1, + "baseLayerMD5": "9126b6362313e20578fb88d38902cd4c.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 88 + }, + { + "costumeName": "microphone-b", + "baseLayerID": -1, + "baseLayerMD5": "29988ebbde49beaceb06d9eb66138b80.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 88 + } + ], + "currentCostumeIndex": 0, + "scratchX": 125, + "scratchY": 49, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 11, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Milk", + "md5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg", + "type": "sprite", + "tags": [ + "food", + "alex eben meyer" + ], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Milk", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "milk-a", + "baseLayerID": -1, + "baseLayerMD5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 71 + }, + { + "costumeName": "milk-b", + "baseLayerID": -1, + "baseLayerMD5": "82d4c1855fe0d400433c7344fb2af3b5.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 71 + }, + { + "costumeName": "milk-c", + "baseLayerID": -1, + "baseLayerMD5": "50afc991b6fdad4b6547ba98ecf8a6af.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 44 + }, + { + "costumeName": "milk-d", + "baseLayerID": -1, + "baseLayerMD5": "8fc7606a176149d225a541a04fa67473.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 71 + }, + { + "costumeName": "milk-e", + "baseLayerID": -1, + "baseLayerMD5": "f2373d449b1226c44436dced422c2935.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 71 + } + ], + "currentCostumeIndex": 0, + "scratchX": -2, + "scratchY": -85, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Monet", + "md5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Monet", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "monet-a", + "baseLayerID": -1, + "baseLayerMD5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 87 + }, + { + "costumeName": "monet-b", + "baseLayerID": -1, + "baseLayerMD5": "9c8f83e39dc8ac49d57c0622ffe2063f.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 87 + }, + { + "costumeName": "monet-c", + "baseLayerID": -1, + "baseLayerMD5": "4435678d26e8fbc266d647693f65f5d7.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 87 + }, + { + "costumeName": "monet-d", + "baseLayerID": -1, + "baseLayerMD5": "42113ca3eca593c3a8f232a9202d6f14.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 87 + }, + { + "costumeName": "monet-e", + "baseLayerID": -1, + "baseLayerMD5": "e530d0dac5290c5366af719cfb4e5953.svg", + "bitmapResolution": 1, + "rotationCenterX": 65, + "rotationCenterY": 89 + } + ], + "currentCostumeIndex": 0, + "scratchX": -53, + "scratchY": -50, + "scale": 0.8, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 4, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Monkey", + "md5": "6e4de762dbd52cd2b6356694a9668211.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Monkey", + "sounds": [ + { + "soundName": "chee chee", + "soundID": -1, + "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", + "sampleCount": 34560, + "rate": 22050, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "monkey-a", + "baseLayerID": -1, + "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 + }, + { + "costumeName": "monkey-b", + "baseLayerID": -1, + "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 + }, + { + "costumeName": "monkey-c", + "baseLayerID": -1, + "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 + } + ], + "currentCostumeIndex": 0, + "scratchX": -61, + "scratchY": 24, + "scale": 0.75, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 51, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Mouse1", + "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Mouse1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "mouse1-a", + "baseLayerID": -1, + "baseLayerMD5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 27 + }, + { + "costumeName": "mouse1-b", + "baseLayerID": -1, + "baseLayerMD5": "f5e477a3f94fc98ba3cd927228405646.svg", + "bitmapResolution": 1, + "rotationCenterX": 65, + "rotationCenterY": 21 + } + ], + "currentCostumeIndex": 0, + "scratchX": -10, + "scratchY": -20, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 43, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Muffin", + "md5": "e00161f08c77d10e72e44b6e01243e63.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Muffin", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "muffin-a", + "baseLayerID": -1, + "baseLayerMD5": "e00161f08c77d10e72e44b6e01243e63.svg", + "bitmapResolution": 1, + "rotationCenterX": 85, + "rotationCenterY": 48 + }, + { + "costumeName": "muffin-b", + "baseLayerID": -1, + "baseLayerMD5": "fb60c3f8d6a892813299daa33b91df23.svg", + "bitmapResolution": 1, + "rotationCenterX": 85, + "rotationCenterY": 48 + } + ], + "currentCostumeIndex": 0, + "scratchX": -74, + "scratchY": -3, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 44, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Nano", + "md5": "02c5433118f508038484bbc5b111e187.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Nano", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "nano-a", + "baseLayerID": -1, + "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 + }, + { + "costumeName": "nano-b", + "baseLayerID": -1, + "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 + }, + { + "costumeName": "nano-c", + "baseLayerID": -1, + "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 + }, + { + "costumeName": "nano-d", + "baseLayerID": -1, + "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 + } + ], + "currentCostumeIndex": 0, + "scratchX": -18, + "scratchY": 28, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 52, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Neigh Pony", + "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Neigh Pony", + "sounds": [ + { + "soundName": "horse", + "soundID": -1, + "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", + "sampleCount": 14464, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "neigh pony", + "baseLayerID": -1, + "baseLayerMD5": "176c4fb4df80df899ca28a48bd1f0edf.svg", + "bitmapResolution": 1, + "rotationCenterX": 74, + "rotationCenterY": 78 + } + ], + "currentCostumeIndex": 0, + "scratchX": 3, + "scratchY": 37, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 45, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Octopus", + "md5": "038df646d2f935d2a5dd601b343fc1d9.svg", + "type": "sprite", + "tags": [ + "animals", + "ocean", + "daria skrybchencko" + ], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Octopus", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "octopus-a", + "baseLayerID": -1, + "baseLayerMD5": "038df646d2f935d2a5dd601b343fc1d9.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 86 + }, + { + "costumeName": "octopus-b", + "baseLayerID": -1, + "baseLayerMD5": "31bdcbdf05688c01aace3fd94c5e82df.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 86 + }, + { + "costumeName": "octopus-c", + "baseLayerID": -1, + "baseLayerMD5": "51e80c09323e36489ad452250acd827c.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 86 + }, + { + "costumeName": "octopus-d", + "baseLayerID": -1, + "baseLayerMD5": "b4242e6cde0392bb9a5fb43a8f232962.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 86 + }, + { + "costumeName": "octopus-e", + "baseLayerID": -1, + "baseLayerMD5": "edfda0a36d9cd8482e3a8dc317107d56.svg", + "bitmapResolution": 1, + "rotationCenterX": 88, + "rotationCenterY": 86 + } + ], + "currentCostumeIndex": 0, + "scratchX": 157, + "scratchY": 83, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 3, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Orange", + "md5": "780ee2ef342f79a81b4c353725331138.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Orange", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "orange", + "baseLayerID": -1, + "baseLayerMD5": "780ee2ef342f79a81b4c353725331138.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 18 + } + ], + "currentCostumeIndex": 0, + "scratchX": 44, + "scratchY": -6, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 46, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Orange2", + "md5": "89b11d2a404c3972b65743f743cc968a.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Orange2", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "orange2-a", + "baseLayerID": -1, + "baseLayerMD5": "89b11d2a404c3972b65743f743cc968a.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 24 + }, + { + "costumeName": "orange2-b", + "baseLayerID": -1, + "baseLayerMD5": "5f7998e007dfa70e70bbd8d43199ebba.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 27 + }, + { + "costumeName": "orange2-c", + "baseLayerID": -1, + "baseLayerMD5": "466e9e2d62ee135a2dabd5593e6f8407.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 33 + } + ], + "currentCostumeIndex": 0, + "scratchX": -60, + "scratchY": 9, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 47, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Owl", + "md5": "a312273b198fcacf68976e3cc74fadb4.svg", + "type": "sprite", + "tags": [ + "animals", + "bird", + "robert hunter" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Owl", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "owl-a", + "baseLayerID": -1, + "baseLayerMD5": "a312273b198fcacf68976e3cc74fadb4.svg", + "bitmapResolution": 1, + "rotationCenterX": 113, + "rotationCenterY": 54 + }, + { + "costumeName": "owl-b", + "baseLayerID": -1, + "baseLayerMD5": "c9916dcfe67302367b05be7f3e5c5ddf.svg", + "bitmapResolution": 1, + "rotationCenterX": 113, + "rotationCenterY": 54 + }, + { + "costumeName": "owl-c", + "baseLayerID": -1, + "baseLayerMD5": "8ec3a2507f1d6dc9b39f7ae5a1ebfdd3.svg", + "bitmapResolution": 1, + "rotationCenterX": 113, + "rotationCenterY": 54 + } + ], + "currentCostumeIndex": 0, + "scratchX": 167, + "scratchY": -3, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 3, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Paddle", + "md5": "8038149bdfe24733ea2144d37d297815.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Paddle", + "sounds": [ + { + "soundName": "boing", + "soundID": -1, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "paddle", + "baseLayerID": -1, + "baseLayerMD5": "8038149bdfe24733ea2144d37d297815.svg", + "bitmapResolution": 1, + "rotationCenterX": 44, + "rotationCenterY": 7 + } + ], + "currentCostumeIndex": 0, + "scratchX": 47, + "scratchY": -12, + "scale": 0.85000000000001, + "direction": -90, + "rotationStyle": "none", + "isDraggable": false, + "indexInLibrary": 48, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Panther", + "md5": "04ca2c122cff11b9bc23834d6f79361e.svg", + "type": "sprite", + "tags": [ + "animals", + "robert hunter" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Panther", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "panther-a", + "baseLayerID": -1, + "baseLayerMD5": "04ca2c122cff11b9bc23834d6f79361e.svg", + "bitmapResolution": 1, + "rotationCenterX": 125, + "rotationCenterY": 81 + }, + { + "costumeName": "panther-b", + "baseLayerID": -1, + "baseLayerMD5": "f8c33765d1105f3bb4cd145fad0f717e.svg", + "bitmapResolution": 1, + "rotationCenterX": 125, + "rotationCenterY": 81 + }, + { + "costumeName": "panther-c", + "baseLayerID": -1, + "baseLayerMD5": "096bf9cad84def12eef2b5d84736b393.svg", + "bitmapResolution": 1, + "rotationCenterX": 125, + "rotationCenterY": 81 + } + ], + "currentCostumeIndex": 0, + "scratchX": -27, + "scratchY": 8, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 1, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Parrot", + "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Parrot", + "sounds": [ + { + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "parrot-a", + "baseLayerID": -1, + "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "bitmapResolution": 1, + "rotationCenterX": 86, + "rotationCenterY": 106 + }, + { + "costumeName": "parrot-b", + "baseLayerID": -1, + "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 31 + } + ], + "currentCostumeIndex": 0, + "scratchX": 77, + "scratchY": 23, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 53, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Pencil", + "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Pencil", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "pencil-a", + "baseLayerID": -1, + "baseLayerMD5": "4495fcb0443cebc5d43e66243a88f1ac.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 54 + }, + { + "costumeName": "pencil-b", + "baseLayerID": -1, + "baseLayerMD5": "21088922dbe127f6d2e58e2e83fb632e.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": 57, + "scratchY": 42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 49, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Penguin1", + "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Penguin1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "penguin1-a", + "baseLayerID": -1, + "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 61 + }, + { + "costumeName": "penguin1-b", + "baseLayerID": -1, + "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 62 + }, + { + "costumeName": "penguin1-c", + "baseLayerID": -1, + "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 61 + } + ], + "currentCostumeIndex": 0, + "scratchX": -58, + "scratchY": -19, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 30, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Penguin2", + "md5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Penguin2", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "penguin2-a", + "baseLayerID": -1, + "baseLayerMD5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 79 + }, + { + "costumeName": "penguin2-b", + "baseLayerID": -1, + "baseLayerMD5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", + "bitmapResolution": 1, + "rotationCenterX": 45, + "rotationCenterY": 79 + }, + { + "costumeName": "penguin2-c", + "baseLayerID": -1, + "baseLayerMD5": "394e79f5f9a462064ece2a9a6606a07d.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 78 + } + ], + "currentCostumeIndex": 0, + "scratchX": 95, + "scratchY": 44, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 61, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Pico", + "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Pico", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "pico-a", + "baseLayerID": -1, + "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 + }, + { + "costumeName": "pico-b", + "baseLayerID": -1, + "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 + }, + { + "costumeName": "pico-c", + "baseLayerID": -1, + "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 + }, + { + "costumeName": "pico-d", + "baseLayerID": -1, + "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 + } + ], + "currentCostumeIndex": 0, + "scratchX": 80, + "scratchY": -26, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 57, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Pico Walking", + "md5": "8eab5fe20dd249bf22964298b1d377eb.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Pico Walking", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "Pico walk1", + "baseLayerID": -1, + "baseLayerMD5": "8eab5fe20dd249bf22964298b1d377eb.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 71 + }, + { + "costumeName": "Pico walk2", + "baseLayerID": -1, + "baseLayerMD5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 71 + }, + { + "costumeName": "Pico walk3", + "baseLayerID": -1, + "baseLayerMD5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 70 + }, + { + "costumeName": "Pico walk4", + "baseLayerID": -1, + "baseLayerMD5": "2582d012d57bca59bc0315c5c5954958.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 70 + } + ], + "currentCostumeIndex": 0, + "scratchX": 98, + "scratchY": -32, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 50, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Planet2", + "md5": "978784738c1d9dd4b1d397fd18bdf406.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Planet2", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "planet2", + "baseLayerID": -1, + "baseLayerMD5": "978784738c1d9dd4b1d397fd18bdf406.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 52, + "scratchY": 25, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 51, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Potion", + "md5": "a317b50b255a208455a7733091adad23.svg", + "type": "sprite", + "tags": [ + "fantasy", + "ipzy" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Potion", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "potion-a", + "baseLayerID": -1, + "baseLayerMD5": "a317b50b255a208455a7733091adad23.svg", + "bitmapResolution": 1, + "rotationCenterX": 15, + "rotationCenterY": 21 + }, + { + "costumeName": "potion-b", + "baseLayerID": -1, + "baseLayerMD5": "5f96576605c3a022df48278b630da745.svg", + "bitmapResolution": 1, + "rotationCenterX": 15, + "rotationCenterY": 28 + }, + { + "costumeName": "potion-c", + "baseLayerID": -1, + "baseLayerMD5": "92d0184c28fac9acb0fb720ec599d61d.svg", + "bitmapResolution": 1, + "rotationCenterX": 15, + "rotationCenterY": 42 + } + ], + "currentCostumeIndex": 0, + "scratchX": 86, + "scratchY": 7, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 22, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Prince", + "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Prince", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "prince", + "baseLayerID": -1, + "baseLayerMD5": "a760bed1cfc28a30b2dc7fd045c90792.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": -73, + "scratchY": -42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 52, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Princess", + "md5": "fcbf44a543dfda884d8acbd6af66faad.svg", + "type": "sprite", + "tags": [ + "fantasy", + "people", + "ipzy" + ], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Princess", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "princess-a", + "baseLayerID": -1, + "baseLayerMD5": "fcbf44a543dfda884d8acbd6af66faad.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 150 + }, + { + "costumeName": "princess-b", + "baseLayerID": -1, + "baseLayerMD5": "562e5eba4a598118411be3062cfbb26f.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 150 + }, + { + "costumeName": "princess-c", + "baseLayerID": -1, + "baseLayerMD5": "f3e5f466d406745cf1b6ce44b0567b9a.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 150 + }, + { + "costumeName": "princess-d", + "baseLayerID": -1, + "baseLayerMD5": "663134f64588f0c55e77767ba9039cfe.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 150 + }, + { + "costumeName": "princess-e", + "baseLayerID": -1, + "baseLayerMD5": "ad0ecbf907d132ddbb547666551ac087.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 150 + } + ], + "currentCostumeIndex": 0, + "scratchX": 123, + "scratchY": -13, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 3, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Pufferfish", + "md5": "81d7db99142a39c9082be2c2183f2175.svg", + "type": "sprite", + "tags": [ + "animals", + "ocean", + "daria skrybchencko" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Pufferfish", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "pufferfish-a", + "baseLayerID": -1, + "baseLayerMD5": "81d7db99142a39c9082be2c2183f2175.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 61 + }, + { + "costumeName": "pufferfish-b", + "baseLayerID": -1, + "baseLayerMD5": "6ea79950db63f5ac24d6c5091df3836b.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 61 + }, + { + "costumeName": "pufferfish-c", + "baseLayerID": -1, + "baseLayerMD5": "4acf5bc398c19d58acf69fce047ee8f6.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 61 + }, + { + "costumeName": "pufferfish-d", + "baseLayerID": -1, + "baseLayerMD5": "c214fa8a9ceed06db03664007b8ad5c6.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 61 + } + ], + "currentCostumeIndex": 0, + "scratchX": -30, + "scratchY": 53, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 4, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Rabbit", + "md5": "2f42891c3f3d63c0e591aeabc5946533.svg", + "type": "sprite", + "tags": [ + "animals", + "daria skrybchencko" + ], + "info": [ + 0, + 5, + 1 + ], + "json": { + "objName": "Rabbit", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "rabbit-a", + "baseLayerID": -1, + "baseLayerMD5": "2f42891c3f3d63c0e591aeabc5946533.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 84 + }, + { + "costumeName": "rabbit-b", + "baseLayerID": -1, + "baseLayerMD5": "80e05ff501040cdc9f52fa6782e06fd2.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 84 + }, + { + "costumeName": "rabbit-c", + "baseLayerID": -1, + "baseLayerMD5": "88ed8b7925baa025b6c7fc628a64b9b1.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 84 + }, + { + "costumeName": "rabbit-d", + "baseLayerID": -1, + "baseLayerMD5": "5f3b8df4d6ab8a72e887f89f554db0be.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 84 + }, + { + "costumeName": "rabbit-e", + "baseLayerID": -1, + "baseLayerMD5": "3003f1135f4aa3b6c361734243621260.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 84 + } + ], + "currentCostumeIndex": 0, + "scratchX": 71, + "scratchY": -48, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 2, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Rainbow", + "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Rainbow", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "rainbow", + "baseLayerID": -1, + "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 36 + } + ], + "currentCostumeIndex": 0, + "scratchX": -91, + "scratchY": 11, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 31, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Referee", + "md5": "0959403aeb134ed2932a85c77e261122.svg", + "type": "sprite", + "tags": [ + "sports", + "soccer", + "football", + "alex eben meyer" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Referee", + "sounds": [ + { + "soundName": "pop", "soundID": -1, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "microphone-a", + "costumeName": "referee-a", "baseLayerID": -1, - "baseLayerMD5": "9126b6362313e20578fb88d38902cd4c.svg", + "baseLayerMD5": "0959403aeb134ed2932a85c77e261122.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 88 + "rotationCenterX": 76, + "rotationCenterY": 68 }, { - "costumeName": "microphone-b", + "costumeName": "referee-b", "baseLayerID": -1, - "baseLayerMD5": "29988ebbde49beaceb06d9eb66138b80.svg", + "baseLayerMD5": "866b9e1ad2e0584216dd45fe7d50d6f5.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 88 + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "referee-c", + "baseLayerID": -1, + "baseLayerMD5": "21a3869435fbd470ef60960a78b06b16.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 + }, + { + "costumeName": "referee-d", + "baseLayerID": -1, + "baseLayerMD5": "5e037aca5446a7e57093e45fe6f18c9e.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 68 } ], "currentCostumeIndex": 0, - "scratchX": 125, - "scratchY": 49, + "scratchX": 170, + "scratchY": 8, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 11, + "indexInLibrary": 3, "visible": true, "spriteInfo": {} } }, { - "name": "Milk", - "md5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg", + "name": "Reindeer", + "md5": "0fff0b181cc4d9250b5b985cc283b049.svg", "type": "sprite", - "tags": [ - "food", - "alex eben meyer" + "tags": [], + "info": [ + 0, + 1, + 1 ], + "json": { + "objName": "Reindeer", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "reindeer", + "baseLayerID": -1, + "baseLayerMD5": "0fff0b181cc4d9250b5b985cc283b049.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 70 + } + ], + "currentCostumeIndex": 0, + "scratchX": 13, + "scratchY": 26, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 53, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Ripley", + "md5": "417ec9f25ad70281564e85e67c97aa08.svg", + "type": "sprite", + "tags": [], "info": [ 0, - 5, + 6, 1 ], "json": { - "objName": "Milk", + "objName": "Ripley", "sounds": [ { "soundName": "pop", @@ -5652,206 +9460,309 @@ ], "costumes": [ { - "costumeName": "milk-a", + "costumeName": "ripley-a", "baseLayerID": -1, - "baseLayerMD5": "e6a7964bc4ea38c79a5a31d6ddfb5ba9.svg", + "baseLayerMD5": "417ec9f25ad70281564e85e67c97aa08.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 71 + "rotationCenterX": 57, + "rotationCenterY": 89 }, { - "costumeName": "milk-b", + "costumeName": "ripley-b", "baseLayerID": -1, - "baseLayerMD5": "82d4c1855fe0d400433c7344fb2af3b5.svg", + "baseLayerMD5": "e40918acf5c4d1d0d42b437b6b6e965d.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 71 + "rotationCenterX": 57, + "rotationCenterY": 89 }, { - "costumeName": "milk-c", + "costumeName": "ripley-c", "baseLayerID": -1, - "baseLayerMD5": "50afc991b6fdad4b6547ba98ecf8a6af.svg", + "baseLayerMD5": "5fb713effcdae17208e6e89527bf720c.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 44 + "rotationCenterX": 57, + "rotationCenterY": 89 }, { - "costumeName": "milk-d", + "costumeName": "ripley-d", "baseLayerID": -1, - "baseLayerMD5": "8fc7606a176149d225a541a04fa67473.svg", + "baseLayerMD5": "6c6597c221c9a5b46c160f537b9795a2.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 71 + "rotationCenterX": 85, + "rotationCenterY": 89 }, { - "costumeName": "milk-e", + "costumeName": "ripley-e", "baseLayerID": -1, - "baseLayerMD5": "f2373d449b1226c44436dced422c2935.svg", + "baseLayerMD5": "92909161afd79673c93a77d15fe8d456.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 71 + "rotationCenterX": 56, + "rotationCenterY": 89 + }, + { + "costumeName": "ripley-f", + "baseLayerID": -1, + "baseLayerMD5": "16e31a6b510ba4e8c1215e6e3a41d9f9.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 90 } ], "currentCostumeIndex": 0, - "scratchX": -2, - "scratchY": -85, - "scale": 1, + "scratchX": 163, + "scratchY": -51, + "scale": 0.8, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 2, + "indexInLibrary": 5, "visible": true, "spriteInfo": {} } }, { - "name": "Monet", - "md5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg", + "name": "Robot", + "md5": "cb3985cd066ccbab11954709b3d54c17.svg", "type": "sprite", "tags": [], "info": [ 0, - 5, - 1 + 4, + 2 ], "json": { - "objName": "Monet", + "objName": "Robot", "sounds": [ { - "soundName": "pop", + "soundName": "computer beep", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "md5": "28c76b6bebd04be1383fe9ba4933d263.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "buzz whir", + "soundID": -1, + "md5": "d4f76ded6bccd765958d15b63804de55.wav", + "sampleCount": 9037, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "monet-a", + "costumeName": "robot-a", "baseLayerID": -1, - "baseLayerMD5": "11c46aaa5e30ad46f5c1883d6feb47b8.svg", + "baseLayerMD5": "cb3985cd066ccbab11954709b3d54c17.svg", "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 87 + "rotationCenterX": 74, + "rotationCenterY": 109 }, { - "costumeName": "monet-b", + "costumeName": "robot-b", "baseLayerID": -1, - "baseLayerMD5": "9c8f83e39dc8ac49d57c0622ffe2063f.svg", + "baseLayerMD5": "fc9276d0909539fd31c30db7b2e08bf9.svg", "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 87 + "rotationCenterX": 56, + "rotationCenterY": 97 }, { - "costumeName": "monet-c", + "costumeName": "robot-c", "baseLayerID": -1, - "baseLayerMD5": "4435678d26e8fbc266d647693f65f5d7.svg", + "baseLayerMD5": "c5e02f00d233199fea1c51b71c402ce4.svg", "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 87 + "rotationCenterX": 63, + "rotationCenterY": 97 }, { - "costumeName": "monet-d", + "costumeName": "robot-d", "baseLayerID": -1, - "baseLayerMD5": "42113ca3eca593c3a8f232a9202d6f14.svg", + "baseLayerMD5": "ca2cf7d6c0446fbce36621006a4b0fac.svg", "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 87 - }, + "rotationCenterX": 59, + "rotationCenterY": 95 + } + ], + "currentCostumeIndex": 0, + "scratchX": -183, + "scratchY": 15, + "scale": 0.8, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 1, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Rocks", + "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Rocks", + "sounds": [ { - "costumeName": "monet-e", + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "rocks", "baseLayerID": -1, - "baseLayerMD5": "e530d0dac5290c5366af719cfb4e5953.svg", + "baseLayerMD5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 89 + "rotationCenterX": 59, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, - "scratchX": -53, - "scratchY": -50, - "scale": 0.8, + "scratchX": 35, + "scratchY": 36, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 4, + "indexInLibrary": 54, "visible": true, "spriteInfo": {} } }, { - "name": "Monkey2", - "md5": "6e4de762dbd52cd2b6356694a9668211.svg", + "name": "Saxophone", + "md5": "e9e4297f5d7e630a384b1dea835ec72d.svg", "type": "sprite", - "tags": [], + "tags": [ + "music", + "andrew rae" + ], "info": [ 0, - 3, - 1 + 2, + 8 ], "json": { - "objName": "Monkey2", + "objName": "Saxophone", "sounds": [ { - "soundName": "chee chee", + "soundName": "C sax", "soundID": -1, - "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", - "sampleCount": 34560, + "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", + "sampleCount": 9491, + "rate": 22050, + "format": "" + }, + { + "soundName": "D sax", + "soundID": -1, + "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", + "sampleCount": 9555, + "rate": 22050, + "format": "" + }, + { + "soundName": "E sax", + "soundID": -1, + "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", + "sampleCount": 7489, + "rate": 22050, + "format": "" + }, + { + "soundName": "F sax", + "soundID": -1, + "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", + "sampleCount": 7361, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "G sax", + "soundID": -1, + "md5": "cefba5de46adfe5702485e0934bb1e13.wav", + "sampleCount": 7349, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "A sax", + "soundID": -1, + "md5": "420991e0d6d99292c6d736963842536a.wav", + "sampleCount": 6472, + "rate": 22050, + "format": "" + }, + { + "soundName": "B sax", + "soundID": -1, + "md5": "653ebe92d491b49ad5d8101d629f567b.wav", + "sampleCount": 9555, "rate": 22050, "format": "" + }, + { + "soundName": "C2 sax", + "soundID": -1, + "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", + "sampleCount": 7349, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "monkey2-a", - "baseLayerID": -1, - "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 - }, - { - "costumeName": "monkey2-b", + "costumeName": "saxophone-a", "baseLayerID": -1, - "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", + "baseLayerMD5": "e9e4297f5d7e630a384b1dea835ec72d.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 + "rotationCenterX": 47, + "rotationCenterY": 80 }, { - "costumeName": "monkey2-c", + "costumeName": "saxophone-b", "baseLayerID": -1, - "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg", + "baseLayerMD5": "04e5650480bfcf9190aa35bbd8d67b8e.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 + "rotationCenterX": 47, + "rotationCenterY": 80 } ], "currentCostumeIndex": 0, - "scratchX": -61, - "scratchY": 24, - "scale": 0.75, + "scratchX": 137, + "scratchY": -13, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 51, + "indexInLibrary": 9, "visible": true, "spriteInfo": {} } }, { - "name": "Nano", - "md5": "02c5433118f508038484bbc5b111e187.svg", + "name": "Scarf1", + "md5": "9db18d2a2b3c9859654fc1b4832e6076.svg", "type": "sprite", "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Nano", + "objName": "Scarf1", "sounds": [ { "soundName": "pop", @@ -5864,66 +9775,38 @@ ], "costumes": [ { - "costumeName": "nano-a", - "baseLayerID": -1, - "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg", - "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-b", - "baseLayerID": -1, - "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg", - "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-c", - "baseLayerID": -1, - "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg", - "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-d", + "costumeName": "scarf1", "baseLayerID": -1, - "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg", + "baseLayerMD5": "9db18d2a2b3c9859654fc1b4832e6076.svg", "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 60 + "rotationCenterX": 54, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, - "scratchX": -18, - "scratchY": 28, - "scale": 1, + "scratchX": 53, + "scratchY": 10, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 52, + "indexInLibrary": 55, "visible": true, "spriteInfo": {} } }, { - "name": "Octopus", - "md5": "038df646d2f935d2a5dd601b343fc1d9.svg", + "name": "Scarf2", + "md5": "ce66662165e2756070f1b12e0a7cb5db.svg", "type": "sprite", - "tags": [ - "animals", - "ocean", - "daria skrybchencko" - ], + "tags": [], "info": [ 0, - 5, + 1, 1 ], "json": { - "objName": "Octopus", + "objName": "Scarf2", "sounds": [ { "soundName": "pop", @@ -5936,74 +9819,42 @@ ], "costumes": [ { - "costumeName": "octopus-a", - "baseLayerID": -1, - "baseLayerMD5": "038df646d2f935d2a5dd601b343fc1d9.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 86 - }, - { - "costumeName": "octopus-b", - "baseLayerID": -1, - "baseLayerMD5": "31bdcbdf05688c01aace3fd94c5e82df.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 86 - }, - { - "costumeName": "octopus-c", - "baseLayerID": -1, - "baseLayerMD5": "51e80c09323e36489ad452250acd827c.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 86 - }, - { - "costumeName": "octopus-d", - "baseLayerID": -1, - "baseLayerMD5": "b4242e6cde0392bb9a5fb43a8f232962.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 86 - }, - { - "costumeName": "octopus-e", + "costumeName": "scarf2", "baseLayerID": -1, - "baseLayerMD5": "edfda0a36d9cd8482e3a8dc317107d56.svg", + "baseLayerMD5": "ce66662165e2756070f1b12e0a7cb5db.svg", "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 86 + "rotationCenterX": 23, + "rotationCenterY": 16 } ], "currentCostumeIndex": 0, - "scratchX": 157, - "scratchY": 83, + "scratchX": 0, + "scratchY": 28, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 3, + "isDraggable": true, + "indexInLibrary": 56, "visible": true, "spriteInfo": {} } }, { - "name": "Owl", - "md5": "a312273b198fcacf68976e3cc74fadb4.svg", + "name": "Shark", + "md5": "4ca6776e9c021e8b21c3346793c9361d.svg", "type": "sprite", "tags": [ "animals", - "bird", - "robert hunter" + "underwater", + "ipzy" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Owl", + "objName": "Shark", "sounds": [ { "soundName": "pop", @@ -6016,57 +9867,46 @@ ], "costumes": [ { - "costumeName": "owl-a", - "baseLayerID": -1, - "baseLayerMD5": "a312273b198fcacf68976e3cc74fadb4.svg", - "bitmapResolution": 1, - "rotationCenterX": 113, - "rotationCenterY": 54 - }, - { - "costumeName": "owl-b", + "costumeName": "shark-a", "baseLayerID": -1, - "baseLayerMD5": "c9916dcfe67302367b05be7f3e5c5ddf.svg", + "baseLayerMD5": "4ca6776e9c021e8b21c3346793c9361d.svg", "bitmapResolution": 1, - "rotationCenterX": 113, - "rotationCenterY": 54 + "rotationCenterX": 150, + "rotationCenterY": 60 }, { - "costumeName": "owl-c", + "costumeName": "shark-b", "baseLayerID": -1, - "baseLayerMD5": "8ec3a2507f1d6dc9b39f7ae5a1ebfdd3.svg", + "baseLayerMD5": "0bb623f0bbec53ee9667cee0b7ad6d47.svg", "bitmapResolution": 1, - "rotationCenterX": 113, - "rotationCenterY": 54 + "rotationCenterX": 150, + "rotationCenterY": 60 } ], "currentCostumeIndex": 0, - "scratchX": 167, - "scratchY": -3, + "scratchX": -5, + "scratchY": 54, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 13, "visible": true, "spriteInfo": {} } }, { - "name": "Panther", - "md5": "04ca2c122cff11b9bc23834d6f79361e.svg", + "name": "Shirt Blouse", + "md5": "918a507af6bbae9e7f36f0d949900838.svg", "type": "sprite", - "tags": [ - "animals", - "robert hunter" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Panther", + "objName": "Shirt Blouse", "sounds": [ { "soundName": "pop", @@ -6079,106 +9919,98 @@ ], "costumes": [ { - "costumeName": "panther-a", - "baseLayerID": -1, - "baseLayerMD5": "04ca2c122cff11b9bc23834d6f79361e.svg", - "bitmapResolution": 1, - "rotationCenterX": 125, - "rotationCenterY": 81 - }, - { - "costumeName": "panther-b", - "baseLayerID": -1, - "baseLayerMD5": "f8c33765d1105f3bb4cd145fad0f717e.svg", - "bitmapResolution": 1, - "rotationCenterX": 125, - "rotationCenterY": 81 - }, - { - "costumeName": "panther-c", + "costumeName": "shirt blouse", "baseLayerID": -1, - "baseLayerMD5": "096bf9cad84def12eef2b5d84736b393.svg", + "baseLayerMD5": "918a507af6bbae9e7f36f0d949900838.svg", "bitmapResolution": 1, - "rotationCenterX": 125, - "rotationCenterY": 81 + "rotationCenterX": 35, + "rotationCenterY": 28 } ], "currentCostumeIndex": 0, - "scratchX": -27, - "scratchY": 8, + "scratchX": -43, + "scratchY": -46, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 1, + "isDraggable": true, + "indexInLibrary": 58, "visible": true, "spriteInfo": {} } }, { - "name": "Parrot", - "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "name": "Shirt Collar", + "md5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", "type": "sprite", "tags": [], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Parrot", + "objName": "Shirt Collar", "sounds": [ { - "soundName": "bird", + "soundName": "pop", "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "parrot-a", + "costumeName": "shirt collar-a", "baseLayerID": -1, - "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "baseLayerMD5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", "bitmapResolution": 1, - "rotationCenterX": 86, - "rotationCenterY": 106 + "rotationCenterX": 30, + "rotationCenterY": 57 }, { - "costumeName": "parrot-b", + "costumeName": "shirt collar-b", "baseLayerID": -1, - "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg", + "baseLayerMD5": "f1b20c3350e8a7e92a2fb1925ad4158b.svg", "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 31 + "rotationCenterX": 30, + "rotationCenterY": 57 + }, + { + "costumeName": "shirt collar-c", + "baseLayerID": -1, + "baseLayerMD5": "5f04b99416a794e04d0855f446780f18.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 57 } ], "currentCostumeIndex": 0, - "scratchX": 77, - "scratchY": 23, + "scratchX": -74, + "scratchY": -4, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 53, + "isDraggable": true, + "indexInLibrary": 59, "visible": true, "spriteInfo": {} } }, { - "name": "Penguin1", - "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", + "name": "Shirt-T", + "md5": "5d7fa4f1788f03d2962f1624d6eac800.svg", "type": "sprite", "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Penguin1", + "objName": "Shirt-T", "sounds": [ { "soundName": "pop", @@ -6191,54 +10023,38 @@ ], "costumes": [ { - "costumeName": "penguin1-a", - "baseLayerID": -1, - "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg", - "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 61 - }, - { - "costumeName": "penguin1-b", - "baseLayerID": -1, - "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg", - "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 62 - }, - { - "costumeName": "penguin1-c", + "costumeName": "shirt-t", "baseLayerID": -1, - "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg", + "baseLayerMD5": "5d7fa4f1788f03d2962f1624d6eac800.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 61 + "rotationCenterX": 39, + "rotationCenterY": 28 } ], "currentCostumeIndex": 0, - "scratchX": -58, - "scratchY": -19, + "scratchX": 54, + "scratchY": -48, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 30, + "isDraggable": true, + "indexInLibrary": 60, "visible": true, "spriteInfo": {} } }, { - "name": "Penguin2", - "md5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", + "name": "Shirt2", + "md5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", "type": "sprite", "tags": [], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Penguin2", + "objName": "Shirt2", "sounds": [ { "soundName": "pop", @@ -6251,54 +10067,46 @@ ], "costumes": [ { - "costumeName": "penguin2-a", - "baseLayerID": -1, - "baseLayerMD5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 79 - }, - { - "costumeName": "penguin2-b", + "costumeName": "shirt2-a", "baseLayerID": -1, - "baseLayerMD5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", + "baseLayerMD5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", "bitmapResolution": 1, - "rotationCenterX": 45, - "rotationCenterY": 79 + "rotationCenterX": 39, + "rotationCenterY": 48 }, { - "costumeName": "penguin2-c", + "costumeName": "shirt2-a2", "baseLayerID": -1, - "baseLayerMD5": "394e79f5f9a462064ece2a9a6606a07d.svg", + "baseLayerMD5": "5b78ab09592126b6bbe2d4907d203909.svg", "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 78 + "rotationCenterX": 39, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, - "scratchX": 95, - "scratchY": 44, + "scratchX": 64, + "scratchY": -11, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 61, + "isDraggable": true, + "indexInLibrary": 57, "visible": true, "spriteInfo": {} } }, { - "name": "Pico", - "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "name": "Shoes1", + "md5": "ffab4cc284070b50ac317e515f59f7d8.svg", "type": "sprite", "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Pico", + "objName": "Shoes1", "sounds": [ { "soundName": "pop", @@ -6311,65 +10119,38 @@ ], "costumes": [ { - "costumeName": "pico-a", - "baseLayerID": -1, - "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg", - "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-b", - "baseLayerID": -1, - "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg", - "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-c", - "baseLayerID": -1, - "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg", - "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-d", + "costumeName": "shoes1", "baseLayerID": -1, - "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg", + "baseLayerMD5": "ffab4cc284070b50ac317e515f59f7d8.svg", "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 66 + "rotationCenterX": 36, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, - "scratchX": 80, - "scratchY": -26, + "scratchX": 98, + "scratchY": 5, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 57, + "isDraggable": true, + "indexInLibrary": 62, "visible": true, "spriteInfo": {} } }, { - "name": "Potion", - "md5": "a317b50b255a208455a7733091adad23.svg", + "name": "Shoes2", + "md5": "1dc5d568d98405c370b91a230397a7f9.svg", "type": "sprite", - "tags": [ - "fantasy", - "ipzy" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Potion", + "objName": "Shoes2", "sounds": [ { "soundName": "pop", @@ -6382,58 +10163,38 @@ ], "costumes": [ { - "costumeName": "potion-a", - "baseLayerID": -1, - "baseLayerMD5": "a317b50b255a208455a7733091adad23.svg", - "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 21 - }, - { - "costumeName": "potion-b", - "baseLayerID": -1, - "baseLayerMD5": "5f96576605c3a022df48278b630da745.svg", - "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 28 - }, - { - "costumeName": "potion-c", + "costumeName": "shoes2", "baseLayerID": -1, - "baseLayerMD5": "92d0184c28fac9acb0fb720ec599d61d.svg", + "baseLayerMD5": "1dc5d568d98405c370b91a230397a7f9.svg", "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 42 + "rotationCenterX": 40, + "rotationCenterY": 8 } ], "currentCostumeIndex": 0, - "scratchX": 86, - "scratchY": 7, + "scratchX": 10, + "scratchY": 28, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 22, + "isDraggable": true, + "indexInLibrary": 61, "visible": true, "spriteInfo": {} } }, { - "name": "Princess", - "md5": "fcbf44a543dfda884d8acbd6af66faad.svg", + "name": "Singer1", + "md5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", "type": "sprite", - "tags": [ - "fantasy", - "people", - "ipzy" - ], + "tags": [], "info": [ 0, - 5, + 1, 1 ], "json": { - "objName": "Princess", + "objName": "Singer1", "sounds": [ { "soundName": "pop", @@ -6446,74 +10207,38 @@ ], "costumes": [ { - "costumeName": "princess-a", - "baseLayerID": -1, - "baseLayerMD5": "fcbf44a543dfda884d8acbd6af66faad.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 150 - }, - { - "costumeName": "princess-b", - "baseLayerID": -1, - "baseLayerMD5": "562e5eba4a598118411be3062cfbb26f.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 150 - }, - { - "costumeName": "princess-c", - "baseLayerID": -1, - "baseLayerMD5": "f3e5f466d406745cf1b6ce44b0567b9a.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 150 - }, - { - "costumeName": "princess-d", - "baseLayerID": -1, - "baseLayerMD5": "663134f64588f0c55e77767ba9039cfe.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 150 - }, - { - "costumeName": "princess-e", + "costumeName": "Singer1", "baseLayerID": -1, - "baseLayerMD5": "ad0ecbf907d132ddbb547666551ac087.svg", + "baseLayerMD5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", "bitmapResolution": 1, "rotationCenterX": 75, - "rotationCenterY": 150 + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 123, - "scratchY": -13, + "scratchX": -74, + "scratchY": -32, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 63, "visible": true, "spriteInfo": {} } }, { - "name": "Pufferfish", - "md5": "81d7db99142a39c9082be2c2183f2175.svg", + "name": "Skates", + "md5": "00e5e173400662875a26bb7d6556346a.svg", "type": "sprite", - "tags": [ - "animals", - "ocean", - "daria skrybchencko" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Pufferfish", + "objName": "Skates", "sounds": [ { "soundName": "pop", @@ -6526,65 +10251,41 @@ ], "costumes": [ { - "costumeName": "pufferfish-a", - "baseLayerID": -1, - "baseLayerMD5": "81d7db99142a39c9082be2c2183f2175.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 61 - }, - { - "costumeName": "pufferfish-b", - "baseLayerID": -1, - "baseLayerMD5": "6ea79950db63f5ac24d6c5091df3836b.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 61 - }, - { - "costumeName": "pufferfish-c", - "baseLayerID": -1, - "baseLayerMD5": "4acf5bc398c19d58acf69fce047ee8f6.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 61 - }, - { - "costumeName": "pufferfish-d", + "costumeName": "skates", "baseLayerID": -1, - "baseLayerMD5": "c214fa8a9ceed06db03664007b8ad5c6.svg", + "baseLayerMD5": "00e5e173400662875a26bb7d6556346a.svg", "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 61 + "rotationCenterX": 44, + "rotationCenterY": -21 } ], "currentCostumeIndex": 0, - "scratchX": -30, - "scratchY": 53, - "scale": 1, + "scratchX": -21, + "scratchY": 22, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 4, + "indexInLibrary": 64, "visible": true, "spriteInfo": {} } }, { - "name": "Rabbit", - "md5": "2f42891c3f3d63c0e591aeabc5946533.svg", + "name": "Snake", + "md5": "4d06e12d90479461303d828f0970f2d4.svg", "type": "sprite", "tags": [ "animals", - "daria skrybchencko" + "robert hunter" ], "info": [ 0, - 5, + 3, 1 ], "json": { - "objName": "Rabbit", + "objName": "Snake", "sounds": [ { "soundName": "pop", @@ -6597,49 +10298,33 @@ ], "costumes": [ { - "costumeName": "rabbit-a", - "baseLayerID": -1, - "baseLayerMD5": "2f42891c3f3d63c0e591aeabc5946533.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 84 - }, - { - "costumeName": "rabbit-b", - "baseLayerID": -1, - "baseLayerMD5": "80e05ff501040cdc9f52fa6782e06fd2.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 84 - }, - { - "costumeName": "rabbit-c", + "costumeName": "snake-a", "baseLayerID": -1, - "baseLayerMD5": "88ed8b7925baa025b6c7fc628a64b9b1.svg", + "baseLayerMD5": "4d06e12d90479461303d828f0970f2d4.svg", "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 84 + "rotationCenterX": 142, + "rotationCenterY": 68 }, { - "costumeName": "rabbit-d", + "costumeName": "snake-b", "baseLayerID": -1, - "baseLayerMD5": "5f3b8df4d6ab8a72e887f89f554db0be.svg", + "baseLayerMD5": "a8546a5f9ccaa2bdb678a362c50a17ec.svg", "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 84 + "rotationCenterX": 142, + "rotationCenterY": 68 }, { - "costumeName": "rabbit-e", + "costumeName": "snake-c", "baseLayerID": -1, - "baseLayerMD5": "3003f1135f4aa3b6c361734243621260.svg", + "baseLayerMD5": "d993a7d70179777c14ac91a07e711d90.svg", "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 84 + "rotationCenterX": 142, + "rotationCenterY": 68 } ], "currentCostumeIndex": 0, - "scratchX": 71, - "scratchY": -48, + "scratchX": -113, + "scratchY": -99, "scale": 1, "direction": 90, "rotationStyle": "normal", @@ -6650,8 +10335,8 @@ } }, { - "name": "Rainbow", - "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "name": "Snowflake", + "md5": "67de2af723246de37d7379b76800ee0b.svg", "type": "sprite", "tags": [], "info": [ @@ -6660,7 +10345,7 @@ 1 ], "json": { - "objName": "Rainbow", + "objName": "Snowflake", "sounds": [ { "soundName": "pop", @@ -6673,43 +10358,38 @@ ], "costumes": [ { - "costumeName": "rainbow", + "costumeName": "snowflake", "baseLayerID": -1, - "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "baseLayerMD5": "67de2af723246de37d7379b76800ee0b.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 36 + "rotationCenterX": 104, + "rotationCenterY": 103 } ], "currentCostumeIndex": 0, - "scratchX": -91, - "scratchY": 11, - "scale": 1, + "scratchX": 0, + "scratchY": -32, + "scale": 0.65, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 31, + "indexInLibrary": 65, "visible": true, "spriteInfo": {} } }, { - "name": "Referee", - "md5": "0959403aeb134ed2932a85c77e261122.svg", + "name": "Snowman", + "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "type": "sprite", - "tags": [ - "sports", - "soccer", - "football", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Referee", + "objName": "Snowman", "sounds": [ { "soundName": "pop", @@ -6722,62 +10402,43 @@ ], "costumes": [ { - "costumeName": "referee-a", - "baseLayerID": -1, - "baseLayerMD5": "0959403aeb134ed2932a85c77e261122.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "referee-b", - "baseLayerID": -1, - "baseLayerMD5": "866b9e1ad2e0584216dd45fe7d50d6f5.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "referee-c", - "baseLayerID": -1, - "baseLayerMD5": "21a3869435fbd470ef60960a78b06b16.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 - }, - { - "costumeName": "referee-d", + "costumeName": "snowman", "baseLayerID": -1, - "baseLayerMD5": "5e037aca5446a7e57093e45fe6f18c9e.svg", + "baseLayerMD5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 68 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 170, - "scratchY": 8, + "scratchX": -86, + "scratchY": 45, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 32, "visible": true, "spriteInfo": {} } }, { - "name": "Ripley", - "md5": "417ec9f25ad70281564e85e67c97aa08.svg", + "name": "Soccer Ball", + "md5": "81ff5ad24454e7a0f1f3ae863bb4dd25.svg", "type": "sprite", - "tags": [], + "tags": [ + "sports", + "soccer", + "football", + "alex eben meyer" + ], "info": [ 0, - 6, + 1, 1 ], "json": { - "objName": "Ripley", + "objName": "Soccer Ball", "sounds": [ { "soundName": "pop", @@ -6790,58 +10451,18 @@ ], "costumes": [ { - "costumeName": "ripley-a", - "baseLayerID": -1, - "baseLayerMD5": "417ec9f25ad70281564e85e67c97aa08.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 89 - }, - { - "costumeName": "ripley-b", - "baseLayerID": -1, - "baseLayerMD5": "e40918acf5c4d1d0d42b437b6b6e965d.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 89 - }, - { - "costumeName": "ripley-c", - "baseLayerID": -1, - "baseLayerMD5": "5fb713effcdae17208e6e89527bf720c.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 89 - }, - { - "costumeName": "ripley-d", - "baseLayerID": -1, - "baseLayerMD5": "6c6597c221c9a5b46c160f537b9795a2.svg", - "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 89 - }, - { - "costumeName": "ripley-e", - "baseLayerID": -1, - "baseLayerMD5": "92909161afd79673c93a77d15fe8d456.svg", - "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 89 - }, - { - "costumeName": "ripley-f", + "costumeName": "soccer ball", "baseLayerID": -1, - "baseLayerMD5": "16e31a6b510ba4e8c1215e6e3a41d9f9.svg", + "baseLayerMD5": "81ff5ad24454e7a0f1f3ae863bb4dd25.svg", "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 90 + "rotationCenterX": 26, + "rotationCenterY": 26 } ], "currentCostumeIndex": 0, - "scratchX": 163, - "scratchY": -51, - "scale": 0.8, + "scratchX": 74, + "scratchY": -80, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -6851,263 +10472,225 @@ } }, { - "name": "Robot", - "md5": "cb3985cd066ccbab11954709b3d54c17.svg", + "name": "Spaceship", + "md5": "7d51af7c52e137ef137012595bac928d.svg", "type": "sprite", "tags": [], "info": [ 0, - 4, - 2 + 5, + 3 ], "json": { - "objName": "Robot", + "objName": "Spaceship", "sounds": [ { - "soundName": "computer beep", + "soundName": "space ripple", + "soundID": -1, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "laser1", "soundID": -1, - "md5": "28c76b6bebd04be1383fe9ba4933d263.wav", - "sampleCount": 9536, + "md5": "46571f8ec0f2cc91666c80e312579082.wav", + "sampleCount": 516, "rate": 11025, "format": "" }, { - "soundName": "buzz whir", + "soundName": "laser2", "soundID": -1, - "md5": "d4f76ded6bccd765958d15b63804de55.wav", - "sampleCount": 9037, + "md5": "27654ed2e3224f0a3f77c244e4fae9aa.wav", + "sampleCount": 755, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "robot-a", + "costumeName": "spaceship-a", "baseLayerID": -1, - "baseLayerMD5": "cb3985cd066ccbab11954709b3d54c17.svg", + "baseLayerMD5": "7d51af7c52e137ef137012595bac928d.svg", "bitmapResolution": 1, - "rotationCenterX": 74, - "rotationCenterY": 109 + "rotationCenterX": 66, + "rotationCenterY": 107 }, { - "costumeName": "robot-b", + "costumeName": "spaceship-b", "baseLayerID": -1, - "baseLayerMD5": "fc9276d0909539fd31c30db7b2e08bf9.svg", + "baseLayerMD5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg", "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 97 + "rotationCenterX": 53, + "rotationCenterY": 106 }, { - "costumeName": "robot-c", + "costumeName": "spaceship-c", "baseLayerID": -1, - "baseLayerMD5": "c5e02f00d233199fea1c51b71c402ce4.svg", + "baseLayerMD5": "3d375cd033f1a7161cae56b114f4cfdb.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 107 + }, + { + "costumeName": "spaceship-d", + "baseLayerID": -1, + "baseLayerMD5": "a456964f32cd7e7bd83fe076bf29558b.svg", "bitmapResolution": 1, "rotationCenterX": 63, - "rotationCenterY": 97 + "rotationCenterY": 107 }, { - "costumeName": "robot-d", + "costumeName": "spaceship-e", "baseLayerID": -1, - "baseLayerMD5": "ca2cf7d6c0446fbce36621006a4b0fac.svg", + "baseLayerMD5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 95 + "rotationCenterX": 71, + "rotationCenterY": 107 } ], "currentCostumeIndex": 0, - "scratchX": -183, - "scratchY": 15, + "scratchX": 116, + "scratchY": 82, "scale": 0.8, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 1, + "indexInLibrary": 6, "visible": true, "spriteInfo": {} } }, { - "name": "Saxophone", - "md5": "e9e4297f5d7e630a384b1dea835ec72d.svg", + "name": "Speaker", + "md5": "44dc3a2ec161999545914d1f77332d76.svg", "type": "sprite", "tags": [ - "music", - "andrew rae" + "music" ], "info": [ 0, - 2, - 8 + 1, + 7 ], "json": { - "objName": "Saxophone", - "sounds": [ + "objName": "Speaker", + "variables": [ { - "soundName": "C sax", - "soundID": -1, - "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", - "sampleCount": 9491, - "rate": 22050, - "format": "" + "name": "scale degree", + "value": 1, + "isPersistent": false }, { - "soundName": "D sax", - "soundID": -1, - "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", - "sampleCount": 9555, - "rate": 22050, - "format": "" + "name": "octave", + "value": 0, + "isPersistent": false }, { - "soundName": "E sax", + "name": "note number", + "value": 62, + "isPersistent": false + }, + { + "name": "loop number", + "value": 1, + "isPersistent": false + } + ], + "sounds": [ + { + "soundName": "drive around", "soundID": -1, - "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", - "sampleCount": 7489, + "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "soundName": "F sax", + "soundName": "scratchy beat", "soundID": -1, - "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", - "sampleCount": 7361, + "md5": "289dc558e076971e74dd1a0bd55719b1.wav", + "sampleCount": 44096, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "G sax", + "soundName": "drum jam", "soundID": -1, - "md5": "cefba5de46adfe5702485e0934bb1e13.wav", - "sampleCount": 7349, + "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", + "sampleCount": 44288, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "A sax", + "soundName": "cymbal echo", "soundID": -1, - "md5": "420991e0d6d99292c6d736963842536a.wav", - "sampleCount": 6472, + "md5": "bb243badd1201b2607bf2513df10cd97.wav", + "sampleCount": 44326, "rate": 22050, "format": "" }, { - "soundName": "B sax", + "soundName": "drum satellite", "soundID": -1, - "md5": "653ebe92d491b49ad5d8101d629f567b.wav", - "sampleCount": 9555, + "md5": "079067d7909f791b29f8be1c00fc2131.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "soundName": "C2 sax", + "soundName": "kick back", "soundID": -1, - "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", - "sampleCount": 7349, + "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", + "sampleCount": 44748, "rate": 22050, "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "saxophone-a", - "baseLayerID": -1, - "baseLayerMD5": "e9e4297f5d7e630a384b1dea835ec72d.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 80 }, { - "costumeName": "saxophone-b", - "baseLayerID": -1, - "baseLayerMD5": "04e5650480bfcf9190aa35bbd8d67b8e.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 80 - } - ], - "currentCostumeIndex": 0, - "scratchX": 137, - "scratchY": -13, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 9, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shark", - "md5": "4ca6776e9c021e8b21c3346793c9361d.svg", - "type": "sprite", - "tags": [ - "animals", - "underwater", - "ipzy" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Shark", - "sounds": [ - { - "soundName": "pop", + "soundName": "drum funky", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "shark-a", - "baseLayerID": -1, - "baseLayerMD5": "4ca6776e9c021e8b21c3346793c9361d.svg", - "bitmapResolution": 1, - "rotationCenterX": 150, - "rotationCenterY": 60 - }, - { - "costumeName": "shark-b", + "costumeName": "speaker", "baseLayerID": -1, - "baseLayerMD5": "0bb623f0bbec53ee9667cee0b7ad6d47.svg", + "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg", "bitmapResolution": 1, - "rotationCenterX": 150, - "rotationCenterY": 60 + "rotationCenterX": 53, + "rotationCenterY": 79 } ], "currentCostumeIndex": 0, - "scratchX": -5, - "scratchY": 54, + "scratchX": -1, + "scratchY": -28, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 13, + "indexInLibrary": 54, "visible": true, "spriteInfo": {} } }, { - "name": "Snake", - "md5": "4d06e12d90479461303d828f0970f2d4.svg", + "name": "Star", + "md5": "ab0914e53e360477275e58b83ec4d423.svg", "type": "sprite", - "tags": [ - "animals", - "robert hunter" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Snake", + "objName": "Star", "sounds": [ { "soundName": "pop", @@ -7120,54 +10703,38 @@ ], "costumes": [ { - "costumeName": "snake-a", - "baseLayerID": -1, - "baseLayerMD5": "4d06e12d90479461303d828f0970f2d4.svg", - "bitmapResolution": 1, - "rotationCenterX": 142, - "rotationCenterY": 68 - }, - { - "costumeName": "snake-b", - "baseLayerID": -1, - "baseLayerMD5": "a8546a5f9ccaa2bdb678a362c50a17ec.svg", - "bitmapResolution": 1, - "rotationCenterX": 142, - "rotationCenterY": 68 - }, - { - "costumeName": "snake-c", + "costumeName": "star", "baseLayerID": -1, - "baseLayerMD5": "d993a7d70179777c14ac91a07e711d90.svg", + "baseLayerMD5": "ab0914e53e360477275e58b83ec4d423.svg", "bitmapResolution": 1, - "rotationCenterX": 142, - "rotationCenterY": 68 + "rotationCenterX": 21, + "rotationCenterY": 19 } - ], - "currentCostumeIndex": 0, - "scratchX": -113, - "scratchY": -99, - "scale": 1, + ], + "currentCostumeIndex": 0, + "scratchX": 55, + "scratchY": 44, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 2, + "indexInLibrary": 66, "visible": true, "spriteInfo": {} } }, { - "name": "Snowman", - "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", + "name": "Starfish", + "md5": "3d1101bbc24ae292a36356af325f660c.svg", "type": "sprite", "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Snowman", + "objName": "Starfish", "sounds": [ { "soundName": "pop", @@ -7180,43 +10747,46 @@ ], "costumes": [ { - "costumeName": "snowman", + "costumeName": "starfish-a", "baseLayerID": -1, - "baseLayerMD5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", + "baseLayerMD5": "3d1101bbc24ae292a36356af325f660c.svg", "bitmapResolution": 1, "rotationCenterX": 75, "rotationCenterY": 75 + }, + { + "costumeName": "starfish-b ", + "baseLayerID": -1, + "baseLayerMD5": "ad8007f4e63693984d4adc466ffa3ad2.svg", + "bitmapResolution": 1, + "rotationCenterX": 53, + "rotationCenterY": 60 } ], - "currentCostumeIndex": 0, - "scratchX": -86, - "scratchY": 45, + "currentCostumeIndex": 1, + "scratchX": -32, + "scratchY": 5, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 32, + "indexInLibrary": 67, "visible": true, "spriteInfo": {} } }, { - "name": "Soccer Ball", - "md5": "81ff5ad24454e7a0f1f3ae863bb4dd25.svg", + "name": "Stop", + "md5": "5b9e3e8edffb0bd4914113609eec5e04.svg", "type": "sprite", - "tags": [ - "sports", - "soccer", - "football", - "alex eben meyer" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Soccer Ball", + "objName": "Stop", "sounds": [ { "soundName": "pop", @@ -7229,460 +10799,205 @@ ], "costumes": [ { - "costumeName": "soccer ball", + "costumeName": "stop", "baseLayerID": -1, - "baseLayerMD5": "81ff5ad24454e7a0f1f3ae863bb4dd25.svg", + "baseLayerMD5": "5b9e3e8edffb0bd4914113609eec5e04.svg", "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 26 + "rotationCenterX": 25, + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, - "scratchX": 74, - "scratchY": -80, + "scratchX": -29, + "scratchY": -29, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 5, + "indexInLibrary": 68, "visible": true, "spriteInfo": {} } }, { - "name": "Spaceship", - "md5": "7d51af7c52e137ef137012595bac928d.svg", + "name": "Strawberry", + "md5": "734556fb8e14740f2cbc971238b71d47.svg", "type": "sprite", - "tags": [], + "tags": [ + "food", + "alex eben meyer" + ], "info": [ 0, 5, - 3 + 1 ], "json": { - "objName": "Spaceship", + "objName": "Strawberry", "sounds": [ { - "soundName": "space ripple", - "soundID": -1, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "laser1", - "soundID": -1, - "md5": "46571f8ec0f2cc91666c80e312579082.wav", - "sampleCount": 516, - "rate": 11025, - "format": "" - }, - { - "soundName": "laser2", + "soundName": "pop", "soundID": -1, - "md5": "27654ed2e3224f0a3f77c244e4fae9aa.wav", - "sampleCount": 755, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "spaceship-a", + "costumeName": "strawberry-a", "baseLayerID": -1, - "baseLayerMD5": "7d51af7c52e137ef137012595bac928d.svg", + "baseLayerMD5": "734556fb8e14740f2cbc971238b71d47.svg", "bitmapResolution": 1, - "rotationCenterX": 66, - "rotationCenterY": 107 + "rotationCenterX": 57, + "rotationCenterY": 58 }, { - "costumeName": "spaceship-b", + "costumeName": "strawberry-b", "baseLayerID": -1, - "baseLayerMD5": "ae2634705b7a4fd31f4c1d1bb0e12545.svg", + "baseLayerMD5": "77dadaa80bc5156f655c2196f57972f7.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 106 + "rotationCenterX": 57, + "rotationCenterY": 58 }, { - "costumeName": "spaceship-c", + "costumeName": "strawberry-c", "baseLayerID": -1, - "baseLayerMD5": "3d375cd033f1a7161cae56b114f4cfdb.svg", + "baseLayerMD5": "19f933b3cf3e8e150753f8fb9bb7a779.svg", "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 107 + "rotationCenterX": 57, + "rotationCenterY": 58 }, { - "costumeName": "spaceship-d", + "costumeName": "strawberry-d", "baseLayerID": -1, - "baseLayerMD5": "a456964f32cd7e7bd83fe076bf29558b.svg", + "baseLayerMD5": "8e8057da8457e6167de36b7d3d28b4bb.svg", "bitmapResolution": 1, - "rotationCenterX": 63, - "rotationCenterY": 107 + "rotationCenterX": 57, + "rotationCenterY": 58 }, { - "costumeName": "spaceship-e", + "costumeName": "strawberry-e", "baseLayerID": -1, - "baseLayerMD5": "5b5cc9904ba63ca2801b61a73d4dcb7e.svg", + "baseLayerMD5": "5eb63e64b83f5aa5b75a55329a34efec.svg", "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 107 + "rotationCenterX": 57, + "rotationCenterY": 58 } ], "currentCostumeIndex": 0, - "scratchX": 116, - "scratchY": 82, - "scale": 0.8, + "scratchX": 138, + "scratchY": 91, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 6, + "indexInLibrary": 3, "visible": true, "spriteInfo": {} } }, { - "name": "Speaker", - "md5": "44dc3a2ec161999545914d1f77332d76.svg", + "name": "Sun", + "md5": "55c931c65456822c0c56a2b30e3e550d.svg", "type": "sprite", - "tags": [ - "music" - ], + "tags": [], "info": [ 0, 1, - 7 + 1 ], "json": { - "objName": "Speaker", - "variables": [ - { - "name": "scale degree", - "value": 1, - "isPersistent": false - }, - { - "name": "octave", - "value": 0, - "isPersistent": false - }, - { - "name": "note number", - "value": 62, - "isPersistent": false - }, - { - "name": "loop number", - "value": 1, - "isPersistent": false - } - ], - "scripts": [ - [ - 890, - 496, - [ - [ - "procDef", - "play major scale note %n for %n beats", - [ - "note", - "beats" - ], - [ - 1, - 1 - ], - false - ], - [ - "setVar:to:", - "scale degree", - [ - "%", - [ - "-", - [ - "getParam", - "note", - "r" - ], - 1 - ], - 7 - ] - ], - [ - "setVar:to:", - "octave", - [ - "computeFunction:of:", - "floor", - [ - "/", - [ - "-", - [ - "getParam", - "note", - "r" - ], - 1 - ], - 7 - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "0" - ], - [ - [ - "setVar:to:", - "note number", - 0 - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "1" - ], - [ - [ - "setVar:to:", - "note number", - "2" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "2" - ], - [ - [ - "setVar:to:", - "note number", - "4" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "3" - ], - [ - [ - "setVar:to:", - "note number", - "5" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "4" - ], - [ - [ - "setVar:to:", - "note number", - "7" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "5" - ], - [ - [ - "setVar:to:", - "note number", - "9" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "6" - ], - [ - [ - "setVar:to:", - "note number", - "11" - ] - ] - ], - [ - "changeVar:by:", - "note number", - 60 - ], - [ - "changeVar:by:", - "note number", - [ - "*", - [ - "readVariable", - "octave" - ], - 12 - ] - ], - [ - "noteOn:duration:elapsed:from:", - [ - "readVariable", - "note number" - ], - [ - "getParam", - "beats", - "r" - ] - ] - ] - ] - ], + "objName": "Sun", "sounds": [ { - "soundName": "drive around", - "soundID": -1, - "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", - "sampleCount": 44096, - "rate": 22050, - "format": "" - }, - { - "soundName": "scratchy beat", - "soundID": -1, - "md5": "289dc558e076971e74dd1a0bd55719b1.wav", - "sampleCount": 44096, - "rate": 22050, - "format": "" - }, - { - "soundName": "drum jam", - "soundID": -1, - "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", - "sampleCount": 44288, - "rate": 22050, - "format": "" - }, - { - "soundName": "cymbal echo", - "soundID": -1, - "md5": "bb243badd1201b2607bf2513df10cd97.wav", - "sampleCount": 44326, - "rate": 22050, - "format": "" - }, - { - "soundName": "drum satellite", + "soundName": "pop", "soundID": -1, - "md5": "079067d7909f791b29f8be1c00fc2131.wav", - "sampleCount": 44096, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "kick back", - "soundID": -1, - "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "drum funky", - "soundID": -1, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "costumeName": "sun", + "baseLayerID": -1, + "baseLayerMD5": "55c931c65456822c0c56a2b30e3e550d.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 16, + "scratchY": -28, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 69, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Sunglasses1", + "md5": "424393e8705aeadcfecb8559ce4dcea2.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Sunglasses1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "speaker", + "costumeName": "sunglasses1", "baseLayerID": -1, - "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg", + "baseLayerMD5": "424393e8705aeadcfecb8559ce4dcea2.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 79 + "rotationCenterX": 37, + "rotationCenterY": 14 } ], "currentCostumeIndex": 0, - "scratchX": -1, - "scratchY": -28, + "scratchX": -36, + "scratchY": 0, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 54, + "indexInLibrary": 70, "visible": true, "spriteInfo": {} } }, { - "name": "Starfish", - "md5": "3d1101bbc24ae292a36356af325f660c.svg", + "name": "Sunglasses2", + "md5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", "type": "sprite", "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Starfish", + "objName": "Sunglasses2", "sounds": [ { "soundName": "pop", @@ -7695,49 +11010,38 @@ ], "costumes": [ { - "costumeName": "starfish-a", - "baseLayerID": -1, - "baseLayerMD5": "3d1101bbc24ae292a36356af325f660c.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "starfish-b ", + "costumeName": "sunglasses2", "baseLayerID": -1, - "baseLayerMD5": "ad8007f4e63693984d4adc466ffa3ad2.svg", + "baseLayerMD5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 60 + "rotationCenterX": 29, + "rotationCenterY": 10 } ], - "currentCostumeIndex": 1, - "scratchX": -37, - "scratchY": 38, + "currentCostumeIndex": 0, + "scratchX": -57, + "scratchY": -25, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 63, + "indexInLibrary": 71, "visible": true, "spriteInfo": {} } }, { - "name": "Strawberry", - "md5": "734556fb8e14740f2cbc971238b71d47.svg", + "name": "Taco", + "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg", "type": "sprite", - "tags": [ - "food", - "alex eben meyer" - ], + "tags": [], "info": [ 0, - 5, + 2, 1 ], "json": { - "objName": "Strawberry", + "objName": "Taco", "sounds": [ { "soundName": "pop", @@ -7750,54 +11054,30 @@ ], "costumes": [ { - "costumeName": "strawberry-a", - "baseLayerID": -1, - "baseLayerMD5": "734556fb8e14740f2cbc971238b71d47.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 58 - }, - { - "costumeName": "strawberry-b", - "baseLayerID": -1, - "baseLayerMD5": "77dadaa80bc5156f655c2196f57972f7.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 58 - }, - { - "costumeName": "strawberry-c", - "baseLayerID": -1, - "baseLayerMD5": "19f933b3cf3e8e150753f8fb9bb7a779.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 58 - }, - { - "costumeName": "strawberry-d", + "costumeName": "taco-a", "baseLayerID": -1, - "baseLayerMD5": "8e8057da8457e6167de36b7d3d28b4bb.svg", + "baseLayerMD5": "d224b30c54bd4d6000c935938c7f5d7e.svg", "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 58 + "rotationCenterX": 20, + "rotationCenterY": 15 }, { - "costumeName": "strawberry-e", + "costumeName": "taco-b", "baseLayerID": -1, - "baseLayerMD5": "5eb63e64b83f5aa5b75a55329a34efec.svg", + "baseLayerMD5": "6dee4f866d79e6475d9824ba11973037.svg", "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 58 + "rotationCenterX": 56, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, - "scratchX": 138, - "scratchY": 91, + "scratchX": 7, + "scratchY": -45, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 3, + "indexInLibrary": 72, "visible": true, "spriteInfo": {} } @@ -8013,6 +11293,102 @@ "spriteInfo": {} } }, + { + "name": "Tree1", + "md5": "8c40e2662c55d17bc384f47165ac43c1.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Tree1", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "tree1", + "baseLayerID": -1, + "baseLayerMD5": "8c40e2662c55d17bc384f47165ac43c1.svg", + "bitmapResolution": 1, + "rotationCenterX": 77, + "rotationCenterY": 126 + } + ], + "currentCostumeIndex": 0, + "scratchX": 91, + "scratchY": 18, + "scale": 0.95, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 73, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Trees", + "md5": "866ed2c2971bb04157e14e935ac8521c.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Trees", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "trees-a", + "baseLayerID": -1, + "baseLayerMD5": "866ed2c2971bb04157e14e935ac8521c.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 94 + }, + { + "costumeName": "trees-b", + "baseLayerID": -1, + "baseLayerMD5": "f1393dde1bb0fc512577995b27616d86.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 87 + } + ], + "currentCostumeIndex": 0, + "scratchX": 26, + "scratchY": -5, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 74, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Trumpet", "md5": "8fa7459ed5877bb14c6625e688be70e7.svg", @@ -8260,6 +11636,58 @@ "spriteInfo": {} } }, + { + "name": "Vest", + "md5": "f8285ca9564451c62a0e3d75b8a714e8.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Vest", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "vest-a", + "baseLayerID": -1, + "baseLayerMD5": "f8285ca9564451c62a0e3d75b8a714e8.svg", + "bitmapResolution": 1, + "rotationCenterX": 18, + "rotationCenterY": 62 + }, + { + "costumeName": "vest-b", + "baseLayerID": -1, + "baseLayerMD5": "77d553eea3910ab8f5bac3d2da601061.svg", + "bitmapResolution": 1, + "rotationCenterX": 18, + "rotationCenterY": 62 + } + ], + "currentCostumeIndex": 0, + "scratchX": -37, + "scratchY": 28, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": true, + "indexInLibrary": 75, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Wand", "md5": "1aa56e9ef7043eaf36ecfe8e330271b7.svg", @@ -8307,6 +11735,50 @@ "spriteInfo": {} } }, + { + "name": "Wanda", + "md5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Wanda", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "wanda", + "baseLayerID": -1, + "baseLayerMD5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": -75, + "scratchY": 49, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 76, + "visible": true, + "spriteInfo": {} + } + }, { "name": "Watermelon", "md5": "26fecef75cf3b6e0d98bff5c06475036.svg",