diff --git a/package.json b/package.json index f026df68e5855ee689e3f2c891496c5a4fd79d12..4592e9d9f00b286c897a009ce1579c9a6c7cfc9f 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,9 @@ "eslint-plugin-react": "^7.0.1", "gh-pages": "^1.0.0", "html-webpack-plugin": "2.28.0", + "immutable": "3.8.1", "lodash.bindall": "4.4.0", + "lodash.debounce": "4.0.8", "lodash.defaultsdeep": "4.6.0", "lodash.isequal": "4.5.0", "lodash.omit": "4.5.0", diff --git a/src/components/asset-panel/selector.css b/src/components/asset-panel/selector.css index 8964c9b13923e9782544fabfaf090867f2c30ebe..3050409c1f790e430872afae7dca879cad1de6f0 100644 --- a/src/components/asset-panel/selector.css +++ b/src/components/asset-panel/selector.css @@ -2,7 +2,7 @@ $new-height: 60px; .wrapper { - width: 200px; + width: 250px; position: relative; } diff --git a/src/components/close-button/close-button.css b/src/components/close-button/close-button.css index ce9cc99ac96ba61f8b30bcdcd815de1dbfe63ded..66b79d8a6fd84948e29d846277eb2ed3577155c0 100644 --- a/src/components/close-button/close-button.css +++ b/src/components/close-button/close-button.css @@ -6,40 +6,46 @@ align-items: center; justify-content: center; - color: gray; - background-color: $blue; - + overflow: hidden; /* Mask the icon animation */ + background-color: rgba(0, 0, 0, 0.1); border-radius: 50%; - border-color: #dbdbdb; - border-style: solid; - + box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - cursor: pointer; user-select: none; - transition: all 0.15s ease-out; /* @todo: standardize with var */ + cursor: pointer; + transition: all 0.15s ease-out; +} + +.close-button.large:hover { + transform: scale(1.1, 1.1); + box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15); } .small { width: 1rem; height: 1rem; - border-width: 1px; + color: #FFF; + background-color: $blue; } .large { - width: 2.75rem; - height: 2.75rem; - border-width: 2px; + width: 1.75rem; + height: 1.75rem; } -.close-button:hover { - transform: scale(1.1, 1.1); -} - -/* Same icon as Sprite Selector Add button, but rotated. - @todo: reuse? -*/ .close-icon { + position: relative; + margin: 0.25rem; + user-select: none; transform-origin: 50%; transform: rotate(45deg); +} + +.small .close-icon { width: 40%; } + +.large .close-icon { + width: 0.75rem; + height: 0.75rem; +} diff --git a/src/components/close-button/close-button.jsx b/src/components/close-button/close-button.jsx index f7c7fc141f28a93bd2833c67aaea1651e6e6d652..c2d78c79620b207c36e934ad16edf8106482cafe 100644 --- a/src/components/close-button/close-button.jsx +++ b/src/components/close-button/close-button.jsx @@ -11,8 +11,8 @@ const CloseButton = props => ( styles.closeButton, props.className, { - [styles.large]: props.size === CloseButton.SIZE_LARGE, - [styles.small]: props.size === CloseButton.SIZE_SMALL + [styles.small]: props.size === CloseButton.SIZE_SMALL, + [styles.large]: props.size === CloseButton.SIZE_LARGE } )} onClick={props.onClick} @@ -24,13 +24,13 @@ const CloseButton = props => ( </div> ); -CloseButton.SIZE_LARGE = 'large'; CloseButton.SIZE_SMALL = 'small'; +CloseButton.SIZE_LARGE = 'large'; CloseButton.propTypes = { className: PropTypes.string, onClick: PropTypes.func.isRequired, - size: PropTypes.oneOf([CloseButton.SIZE_LARGE, CloseButton.SIZE_SMALL]) + size: PropTypes.oneOf([CloseButton.SIZE_SMALL, CloseButton.SIZE_LARGE]) }; CloseButton.defaultProps = { diff --git a/src/components/filter/filter.css b/src/components/filter/filter.css new file mode 100644 index 0000000000000000000000000000000000000000..fa8e072e10bc8cea39150526b1d0184f46b9fa75 --- /dev/null +++ b/src/components/filter/filter.css @@ -0,0 +1,103 @@ +@import "../../css/units.css"; +@import "../../css/colors.css"; + +.filter { + display: flex; + flex-direction: row; + align-items: center; + /* + Should we use width 100% instead, for cases when component's + parent is not a flexbox container? + */ + flex-grow: 1; + + padding: 0.3rem 0.5rem; + background: rgba(0, 0, 0, 0.10); + border: 1px solid rgba(255, 255, 255, 0.10); + border-radius: 10rem; + user-select: none; +} + +.filter:hover { + background: rgba(0, 0, 0, 0.15); +} + +.filter-icon { + height: 0.9rem; + width: 0.9rem; + margin: 0 0.5rem 0 0.75rem; +} + +/* + Hidden state +*/ +.x-icon-wrapper { + opacity: 0; + + display: flex; + justify-content: center; + align-items: center; + + overflow: hidden; /* Mask the icon animation */ + height: 1.25rem; + width: 1.25rem; + margin: 0 0.25rem 0 0.5rem; /* @todo: move to parent to make component*/ + + border-radius: 50%; + pointer-events: none; + cursor: default; + transition: opacity 0.05s linear; +} + +/* + Shown state +*/ +.filter.is-active .x-icon-wrapper { + pointer-events: auto; + cursor: pointer; + opacity: 1; + transition: opacity 0.05s linear; +} + +.filter.is-active .x-icon-wrapper:hover { + transform: scale(1.2, 1.2); +} + +/* + Hidden state +*/ +.x-icon { + position: relative; + margin: 0.25rem; + user-select: none; + transform: translateX(0.5rem); + transition: transform 0.085s cubic-bezier(0.78, 1, 1, 1); +} + +/* + Shown state +*/ +.filter.is-active .x-icon-wrapper .x-icon { + transform: translateX(0); +} + +.filter-input { + flex-grow: 1; + line-height: 1.25rem; + background-color: transparent; + -webkit-appearance: none; + outline: none; + border: 0; + color: white; + font-size: 0.75rem; + letter-spacing: 0.15px; + cursor: text; +} + +.filter-input::placeholder { + opacity: 0.75; + padding: 0 0 0 0.25rem; + color: white; + font-size: 0.75rem; + letter-spacing: 0.15px; +} diff --git a/src/components/filter/filter.jsx b/src/components/filter/filter.jsx new file mode 100644 index 0000000000000000000000000000000000000000..6e140eb80b3c4bd6bd0f8bad350f447cb7865b36 --- /dev/null +++ b/src/components/filter/filter.jsx @@ -0,0 +1,57 @@ +const classNames = require('classnames'); +const PropTypes = require('prop-types'); +const React = require('react'); + +const filterIcon = require('./icon--filter.svg'); +const xIcon = require('./icon--x.svg'); +const styles = require('./filter.css'); + +const FilterComponent = props => { + const { + onChange, + onClear, + placeholderText, + filterQuery + } = props; + return ( + <div + className={classNames({ + [styles.filter]: true, + [styles.isActive]: filterQuery.length > 0 + })} + > + <img + className={styles.filterIcon} + src={filterIcon} + /> + <input + autoFocus + className={styles.filterInput} + placeholder={placeholderText} + type="text" + value={filterQuery} + onChange={onChange} + /> + <div + className={styles.xIconWrapper} + onClick={onClear} + > + <img + className={styles.xIcon} + src={xIcon} + /> + </div> + </div> + ); +}; + +FilterComponent.propTypes = { + filterQuery: PropTypes.string, + onChange: PropTypes.func, + onClear: PropTypes.func, + placeholderText: PropTypes.string +}; +FilterComponent.defaultProps = { + placeholderText: 'what are you looking for?' +}; +module.exports = FilterComponent; diff --git a/src/components/filter/icon--filter.svg b/src/components/filter/icon--filter.svg new file mode 100644 index 0000000000000000000000000000000000000000..2a0c75fcb9ffc6aa604b66b0ce6320994e2b086a Binary files /dev/null and b/src/components/filter/icon--filter.svg differ diff --git a/src/components/filter/icon--x.svg b/src/components/filter/icon--x.svg new file mode 100644 index 0000000000000000000000000000000000000000..e78a2a8e24a8fe526004cd1ec4e1a2622dec76d2 Binary files /dev/null and b/src/components/filter/icon--x.svg differ diff --git a/src/components/gui/gui.css b/src/components/gui/gui.css index ebaf67d845cc1893abe6f63fc6fbfebcf04b19dd..989601a57f69feb9d9579b86a2a83c9c3bac6507 100644 --- a/src/components/gui/gui.css +++ b/src/components/gui/gui.css @@ -64,8 +64,10 @@ } .tab.is-selected { + z-index: 1; color: #40B9F5; background-color: #FFFFFF; + border-bottom: white 1px solid; } .tabs { diff --git a/src/components/library-item/library-item.css b/src/components/library-item/library-item.css index e25c478d2af2147ee88ebccb472fa3d00fff69dc..12253a55202602010b71b2a98014d1ecbbe787df 100644 --- a/src/components/library-item/library-item.css +++ b/src/components/library-item/library-item.css @@ -6,8 +6,9 @@ align-items: center; justify-content: center; flex-basis: 160px; + max-width: 160px; height: 160px; - margin: calc($space / 2); + margin: $space; padding: 1rem 1rem 0 1rem; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; color: #575e75; @@ -23,18 +24,18 @@ .library-item:hover { border-width: 2px; border-color: #1dacf4; - transition: 0.1s ease-out; - transform: scale(1.02, 1.02); } -.library-item.is-selected { - border-width: 2px; - border-color: #1dacf4; - transition: 0.25s ease-out; +.library-item-image-container-wrapper { + height: 100px; + width: 100%; + position: relative; } .library-item-image-container { + position: absolute; height: 100px; + width: 100%; } .library-item-image { @@ -47,12 +48,12 @@ margin: 0.25rem 0; text-align: center; - /* + /* For truncating overflowing text gracefully Min-width is for a bug: https://css-tricks.com/flexbox-truncated-text */ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; - min-width: 0; + min-width: 0; } diff --git a/src/components/library-item/library-item.jsx b/src/components/library-item/library-item.jsx index 31e722b0e8fd6cc9bb7d76cd24bd8fdf12cfe9e5..6cc6ff7d6eccbd739a8840a203b16aae77918adb 100644 --- a/src/components/library-item/library-item.jsx +++ b/src/components/library-item/library-item.jsx @@ -1,4 +1,3 @@ -const classNames = require('classnames'); const bindAll = require('lodash.bindall'); const PropTypes = require('prop-types'); const React = require('react'); @@ -6,29 +5,41 @@ const React = require('react'); const Box = require('../box/box.jsx'); const styles = require('./library-item.css'); -class LibraryItem extends React.Component { +class LibraryItem extends React.PureComponent { constructor (props) { super(props); - bindAll(this, ['handleClick']); + bindAll(this, [ + 'handleClick', + 'handleMouseEnter', + 'handleMouseLeave' + ]); } handleClick (e) { this.props.onSelect(this.props.id); e.preventDefault(); } + handleMouseEnter () { + this.props.onMouseEnter(this.props.id); + } + handleMouseLeave () { + this.props.onMouseLeave(this.props.id); + } render () { return ( <Box - className={classNames({ - [styles.libraryItem]: true, - [styles.isSelected]: this.props.selected - })} + className={styles.libraryItem} onClick={this.handleClick} + onMouseEnter={this.handleMouseEnter} + onMouseLeave={this.handleMouseLeave} > - <Box className={styles.libraryItemImageContainer}> - <img - className={styles.libraryItemImage} - src={this.props.iconURL} - /> + {/* Layers of wrapping is to prevent layout thrashing on animation */} + <Box className={styles.libraryItemImageContainerWrapper}> + <Box className={styles.libraryItemImageContainer}> + <img + className={styles.libraryItemImage} + src={this.props.iconURL} + /> + </Box> </Box> <span className={styles.libraryItemName}>{this.props.name}</span> </Box> @@ -40,8 +51,9 @@ LibraryItem.propTypes = { iconURL: PropTypes.string.isRequired, id: PropTypes.number.isRequired, name: PropTypes.string.isRequired, - onSelect: PropTypes.func.isRequired, - selected: PropTypes.bool.isRequired + onMouseEnter: PropTypes.func.isRequired, + onMouseLeave: PropTypes.func.isRequired, + onSelect: PropTypes.func.isRequired }; module.exports = LibraryItem; diff --git a/src/components/library/library.css b/src/components/library/library.css index b8147a1736f330d8c5c8cd3ec6ef9e63984bfc6f..73f615191d159177433d271193fb8b7b73f9f47c 100644 --- a/src/components/library/library.css +++ b/src/components/library/library.css @@ -1,24 +1,14 @@ +@import "../../css/units.css"; +@import "../../css/colors.css"; + .library-scroll-grid { display: flex; + justify-content: center; + align-content: flex-start; + background: $ui-pane-gray; flex-grow: 1; - justify-content: space-between; flex-wrap: wrap; - overflow-y: scroll; - height: calc(100% - 6rem); /* @todo: currently estimate, fix precision */ - - /* - Gives sprites a bit of room so they don't get cut off when they grow on hover - @todo: sync as a var, with the transform defined on .library-item:hover - */ - padding: 0.15rem; -} - -.modal-header { - width: 100%; - margin-bottom: 2rem; + overflow-y: auto; + height: calc(100% - $library-header-height); padding: 0.5rem; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 1.5rem; - font-weight: normal; - color: #8e8f95; } diff --git a/src/components/library/library.jsx b/src/components/library/library.jsx index 16327c10c80cb075658e28484465998bf1ce7c4c..ad33743be1e025b8587db9c031df00f6b5378a5b 100644 --- a/src/components/library/library.jsx +++ b/src/components/library/library.jsx @@ -10,42 +10,62 @@ const styles = require('./library.css'); class LibraryComponent extends React.Component { constructor (props) { super(props); - bindAll(this, ['handleSelect']); - this.state = {selectedItem: null}; + bindAll(this, [ + 'handleFilterChange', + 'handleFilterClear', + 'handleMouseEnter', + 'handleMouseLeave', + 'handleSelect' + ]); + this.state = { + selectedItem: null, + filterQuery: '' + }; } handleSelect (id) { - if (this.state.selectedItem === id) { - // Double select: select as the library's value. - this.props.onRequestClose(); - this.props.onItemSelected(this.props.data[id]); - } else { - if (this.props.onItemChosen) { - this.props.onItemChosen(this.props.data[id]); - } - } - this.setState({selectedItem: id}); + this.props.onRequestClose(); + this.props.onItemSelected(this.getFilteredData()[id]); + } + handleMouseEnter (id) { + if (this.props.onItemMouseEnter) this.props.onItemMouseEnter(this.getFilteredData()[id]); + } + handleMouseLeave (id) { + if (this.props.onItemMouseLeave) this.props.onItemMouseLeave(this.getFilteredData()[id]); + } + handleFilterChange (event) { + this.setState({filterQuery: event.target.value}); + } + handleFilterClear () { + this.setState({filterQuery: ''}); + } + getFilteredData () { + return this.props.data.filter(dataItem => + dataItem.name.toLowerCase().indexOf(this.state.filterQuery.toLowerCase()) !== -1); } render () { if (!this.props.visible) return null; return ( <ModalComponent contentLabel={this.props.title} + filterQuery={this.state.filterQuery} visible={this.props.visible} + onFilterChange={this.handleFilterChange} + onFilterClear={this.handleFilterClear} onRequestClose={this.props.onRequestClose} > - <h1 className={styles.modalHeader}>{this.props.title}</h1> <div className={styles.libraryScrollGrid}> - {this.props.data.map((dataItem, itemId) => { + {this.getFilteredData().map((dataItem, index) => { const scratchURL = dataItem.md5 ? `https://cdn.assets.scratch.mit.edu/internalapi/asset/${dataItem.md5}/get/` : dataItem.rawURL; return ( <LibraryItem iconURL={scratchURL} - id={itemId} - key={`item_${itemId}`} + id={index} + key={`item_${index}`} name={dataItem.name} - selected={this.state.selectedItem === itemId} + onMouseEnter={this.handleMouseEnter} + onMouseLeave={this.handleMouseLeave} onSelect={this.handleSelect} /> ); @@ -59,6 +79,7 @@ class LibraryComponent extends React.Component { LibraryComponent.propTypes = { data: PropTypes.arrayOf( /* eslint-disable react/no-unused-prop-types, lines-around-comment */ + // An item in the library PropTypes.shape({ // @todo remove md5/rawURL prop from library, refactor to use storage md5: PropTypes.string, @@ -67,7 +88,8 @@ LibraryComponent.propTypes = { }) /* eslint-enable react/no-unused-prop-types, lines-around-comment */ ), - onItemChosen: PropTypes.func, + onItemMouseEnter: PropTypes.func, + onItemMouseLeave: PropTypes.func, onItemSelected: PropTypes.func, onRequestClose: PropTypes.func, title: PropTypes.string.isRequired, diff --git a/src/components/modal/modal.css b/src/components/modal/modal.css index 25a134f5e689d5d80dae6ca88fe6a7a693dccce3..a72a4f06dbc18c67a672a166b7fddb57fbe66a0f 100644 --- a/src/components/modal/modal.css +++ b/src/components/modal/modal.css @@ -11,32 +11,69 @@ background-color: rgba(0, 0, 0, .75); } -.modal-content { +/* @todo: extract to type: full ? */ +.full-modal-content { position: absolute; outline: none; - overflow-y: scroll; + overflow-y: auto; -webkit-overflow-scrolling: 'touch'; - border: 1px solid #ccc; - padding: 0; - top: 5%; - right: 5%; - bottom: 5%; - left: 5%; - border-radius: $space; user-select: none; + height: 100%; + width: 100%; + display: flex; } -.modal-children { - overflow: hidden; - height: 100%; - z-index: 0; - padding: 2rem; - background: $ui-pane-gray; +/* + Modal header has 3 items: + |filter title x| + + Use the same width for both side item containers, + so that title remains centered +*/ +$sides: 20rem; + +.header { + display: flex; + flex-direction: row; + flex-wrap: nowrap; + justify-content: flex-start; + height: $library-header-height; + + box-sizing: border-box; + width: 100%; + background-color: $blue; + + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 1rem; + font-weight: normal; } -.close-button { - position: absolute; - top: 1rem; - right: 1rem; - z-index: 2; +.header-item { + display: flex; + align-items: center; + padding: 1rem; + text-decoration: none; + color: white; + user-select: none; } + +.header-item-filter { + display: flex; + flex-basis: $sides; + justify-content: flex-start; +} + +.header-item-title { + flex-grow: 1; + flex-shrink: 0; + justify-content: center; + user-select: none; + letter-spacing: 0.4px; + cursor: default; +} + +.header-item-close { + flex-basis: $sides; + justify-content: flex-end; +} + diff --git a/src/components/modal/modal.jsx b/src/components/modal/modal.jsx index 3a3fc25db56a00488657e121ea6a41c076c3bfc6..2a743bd74447dae5cbf7465a906134551dfeafd0 100644 --- a/src/components/modal/modal.jsx +++ b/src/components/modal/modal.jsx @@ -1,9 +1,11 @@ +const classNames = require('classnames'); const PropTypes = require('prop-types'); const React = require('react'); const ReactModal = require('react-modal'); const Box = require('../box/box.jsx'); const CloseButton = require('../close-button/close-button.jsx'); +const Filter = require('../filter/filter.jsx'); const styles = require('./modal.css'); @@ -11,21 +13,44 @@ class ModalComponent extends React.Component { render () { return ( <ReactModal - className={styles.modalContent} + className={styles.fullModalContent} contentLabel={this.props.contentLabel} isOpen={this.props.visible} overlayClassName={styles.modalOverlay} ref={m => (this.modal = m)} - onRequestClose={this.props.onRequestClose} > - <CloseButton - className={styles.closeButton} - onClick={this.props.onRequestClose} - /> <Box - className={styles.modalChildren} direction="column" + grow={1} > + <div className={styles.header}> + <div className={classNames(styles.headerItem, styles.headerItemFilter)}> + <Filter + filterQuery={this.props.filterQuery} + onChange={this.props.onFilterChange} + onClear={this.props.onFilterClear} + /> + </div> + <div + className={classNames( + styles.headerItem, + styles.headerItemTitle + )} + > + {this.props.contentLabel} + </div> + <div + className={classNames( + styles.headerItem, + styles.headerItemClose + )} + > + <CloseButton + size={CloseButton.SIZE_LARGE} + onClick={this.props.onRequestClose} + /> + </div> + </div> {this.props.children} </Box> </ReactModal> @@ -36,7 +61,10 @@ class ModalComponent extends React.Component { ModalComponent.propTypes = { children: PropTypes.node, contentLabel: PropTypes.string.isRequired, - onRequestClose: PropTypes.func.isRequired, + filterQuery: PropTypes.string, + onFilterChange: PropTypes.func, + onFilterClear: PropTypes.func, + onRequestClose: PropTypes.func, visible: PropTypes.bool.isRequired }; diff --git a/src/components/monitor-list/monitor-list.jsx b/src/components/monitor-list/monitor-list.jsx index 9ee885036cbf8d7b99ee790f2c6032afb8905192..fd9631e23fa06939794773814e8114d447cfc65f 100644 --- a/src/components/monitor-list/monitor-list.jsx +++ b/src/components/monitor-list/monitor-list.jsx @@ -2,6 +2,8 @@ const React = require('react'); const Box = require('../box/box.jsx'); const Monitor = require('../../containers/monitor.jsx'); const PropTypes = require('prop-types'); +const {OrderedMap} = require('immutable'); + const styles = require('./monitor-list.css'); @@ -9,10 +11,14 @@ const MonitorList = props => ( <Box className={styles.monitorList} > - {props.monitors.map(monitorData => ( + {props.monitors.valueSeq().map((monitorData, index) => ( <Monitor - {...monitorData} + id={monitorData.id} + index={index} key={monitorData.id} + opcode={monitorData.opcode} + params={monitorData.params} + value={monitorData.value} onDragEnd={props.onMonitorChange} /> ))} @@ -20,13 +26,7 @@ const MonitorList = props => ( ); MonitorList.propTypes = { - monitors: PropTypes.arrayOf(PropTypes.shape({ - color: PropTypes.string, - label: PropTypes.string.isRequired, - value: PropTypes.string.isRequired, - x: PropTypes.number, - y: PropTypes.number - })), + monitors: PropTypes.instanceOf(OrderedMap), onMonitorChange: PropTypes.func.isRequired }; diff --git a/src/components/monitor/monitor.jsx b/src/components/monitor/monitor.jsx index edd0fb0439a39ab0ccc080c67aa6cd068e603a3a..54b1ebe8a6cb6e3a20b78dadfc8fe7fd3a477bb7 100644 --- a/src/components/monitor/monitor.jsx +++ b/src/components/monitor/monitor.jsx @@ -7,7 +7,7 @@ const styles = require('./monitor.css'); const categories = { data: '#FF8C1A', sensing: '#5CB1D6', - sounds: '#CF63CF', + sound: '#CF63CF', looks: '#9966FF', motion: '#4C97FF' }; diff --git a/src/containers/backdrop-library.jsx b/src/containers/backdrop-library.jsx index b19921b4c77605d0f1f8700d1e70e7e814aea283..62e9cd473a21a9db548868af3bd1d273bcc18359 100644 --- a/src/containers/backdrop-library.jsx +++ b/src/containers/backdrop-library.jsx @@ -4,7 +4,7 @@ const React = require('react'); const VM = require('scratch-vm'); const backdropLibraryContent = require('../lib/libraries/backdrops.json'); -const LibaryComponent = require('../components/library/library.jsx'); +const LibraryComponent = require('../components/library/library.jsx'); class BackdropLibrary extends React.Component { @@ -26,7 +26,7 @@ class BackdropLibrary extends React.Component { } render () { return ( - <LibaryComponent + <LibraryComponent data={backdropLibraryContent} title="Backdrop Library" visible={this.props.visible} diff --git a/src/containers/blocks.jsx b/src/containers/blocks.jsx index 487bed48078b808835bc7209ae5696913fa2d784..13b3975fdaaf77320b215bef5faadadbcc94e70b 100644 --- a/src/containers/blocks.jsx +++ b/src/containers/blocks.jsx @@ -1,4 +1,5 @@ const bindAll = require('lodash.bindall'); +const debounce = require('lodash.debounce'); const defaultsDeep = require('lodash.defaultsdeep'); const PropTypes = require('prop-types'); const React = require('react'); @@ -30,6 +31,7 @@ class Blocks extends React.Component { 'onScriptGlowOff', 'onBlockGlowOn', 'onBlockGlowOff', + 'onTargetsUpdate', 'onVisualReport', 'onWorkspaceUpdate', 'onWorkspaceMetricsChange', @@ -40,6 +42,7 @@ class Blocks extends React.Component { workspaceMetrics: {}, prompt: null }; + this.onTargetsUpdate = debounce(this.onTargetsUpdate, 100); } componentDidMount () { const workspaceConfig = defaultsDeep({}, Blocks.defaultOptions, this.props.options); @@ -85,6 +88,7 @@ class Blocks extends React.Component { this.props.vm.addListener('BLOCK_GLOW_OFF', this.onBlockGlowOff); this.props.vm.addListener('VISUAL_REPORT', this.onVisualReport); this.props.vm.addListener('workspaceUpdate', this.onWorkspaceUpdate); + this.props.vm.addListener('targetsUpdate', this.onTargetsUpdate); } detachVM () { this.props.vm.removeListener('SCRIPT_GLOW_ON', this.onScriptGlowOn); @@ -93,8 +97,25 @@ class Blocks extends React.Component { this.props.vm.removeListener('BLOCK_GLOW_OFF', this.onBlockGlowOff); this.props.vm.removeListener('VISUAL_REPORT', this.onVisualReport); this.props.vm.removeListener('workspaceUpdate', this.onWorkspaceUpdate); + this.props.vm.removeListener('targetsUpdate', this.onTargetsUpdate); + } + updateToolboxBlockValue (id, value) { + this.workspace + .getFlyout() + .getWorkspace() + .getBlockById(id) + .inputList[0] + .fieldRow[0] + .setValue(value); + } + onTargetsUpdate () { + if (this.props.vm.editingTarget) { + ['glide', 'move', 'set'].forEach(prefix => { + this.updateToolboxBlockValue(`${prefix}x`, this.props.vm.editingTarget.x.toFixed(0)); + this.updateToolboxBlockValue(`${prefix}y`, this.props.vm.editingTarget.y.toFixed(0)); + }); + } } - onWorkspaceMetricsChange () { const target = this.props.vm.editingTarget; if (target && target.id) { @@ -127,7 +148,6 @@ class Blocks extends React.Component { if (this.props.vm.editingTarget && !this.state.workspaceMetrics[this.props.vm.editingTarget.id]) { this.onWorkspaceMetricsChange(); } - this.ScratchBlocks.Events.disable(); this.workspace.clear(); @@ -152,6 +172,7 @@ class Blocks extends React.Component { } handlePromptCallback (data) { this.state.prompt.callback(data); + this.props.vm.createVariable(data); this.handlePromptClose(); } handlePromptClose () { diff --git a/src/containers/costume-library.jsx b/src/containers/costume-library.jsx index 1fea39a2dda106f7941084469c81fb0886f32130..f245c098fcc179fc76fb17ba2c9590f449a379cc 100644 --- a/src/containers/costume-library.jsx +++ b/src/containers/costume-library.jsx @@ -4,10 +4,10 @@ const React = require('react'); const VM = require('scratch-vm'); const costumeLibraryContent = require('../lib/libraries/costumes.json'); -const LibaryComponent = require('../components/library/library.jsx'); +const LibraryComponent = require('../components/library/library.jsx'); -class CostumeLibrary extends React.Component { +class CostumeLibrary extends React.PureComponent { constructor (props) { super(props); bindAll(this, [ @@ -26,7 +26,7 @@ class CostumeLibrary extends React.Component { } render () { return ( - <LibaryComponent + <LibraryComponent data={costumeLibraryContent} title="Costume Library" visible={this.props.visible} diff --git a/src/containers/costume-tab.jsx b/src/containers/costume-tab.jsx index 24f54bc7832152757c7b0cfb9fcccc2050729d2c..af73857e75f5a2427da74c69e9f2ebc5b65769be 100644 --- a/src/containers/costume-tab.jsx +++ b/src/containers/costume-tab.jsx @@ -23,28 +23,25 @@ class CostumeTab extends React.Component { this.state = {selectedCostumeIndex: 0}; } + componentWillReceiveProps (nextProps) { + const { + editingTarget, + sprites, + stage + } = nextProps; + + const target = editingTarget && sprites[editingTarget] ? sprites[editingTarget] : stage; + if (target && target.costumes && this.state.selectedCostumeIndex > target.costumes.length - 1) { + this.setState({selectedCostumeIndex: target.costumes.length - 1}); + } + } + handleSelectCostume (costumeIndex) { this.setState({selectedCostumeIndex: costumeIndex}); } handleDeleteCostume (costumeIndex) { - // @todo the VM should handle all of this logic - const {editingTarget} = this.props.vm; - - if (costumeIndex === editingTarget.currentCostume) { - editingTarget.setCostume(costumeIndex - 1); - } - - editingTarget.sprite.costumes = editingTarget.sprite.costumes - .slice(0, costumeIndex) - .concat(editingTarget.sprite.costumes.slice(costumeIndex + 1)); - this.props.vm.runtime.requestTargetsUpdate(editingTarget); - // @todo not sure if this is getting redrawn correctly - this.props.vm.runtime.requestRedraw(); - - this.setState({ - selectedCostumeIndex: this.state.selectedCostumeIndex % editingTarget.sprite.costumes.length - }); + this.props.vm.deleteCostume(costumeIndex); } render () { diff --git a/src/containers/monitor.jsx b/src/containers/monitor.jsx index 4ec8681572efc567f9a54443f86d5199a8754f60..9bed328d40542625e0634961fb7729669269931e 100644 --- a/src/containers/monitor.jsx +++ b/src/containers/monitor.jsx @@ -1,6 +1,8 @@ const bindAll = require('lodash.bindall'); const React = require('react'); +const PropTypes = require('prop-types'); +const monitorAdapter = require('../lib/monitor-adapter.js'); const MonitorComponent = require('../components/monitor/monitor.jsx'); class Monitor extends React.Component { @@ -18,15 +20,23 @@ class Monitor extends React.Component { ); } render () { + const monitorProps = monitorAdapter(this.props); return ( <MonitorComponent - {...this.props} + {...monitorProps} onDragEnd={this.handleDragEnd} /> ); } } -Monitor.propTypes = MonitorComponent.propTypes; +Monitor.propTypes = { + id: PropTypes.string.isRequired, + index: PropTypes.number.isRequired, // eslint-disable-line react/no-unused-prop-types + onDragEnd: PropTypes.func.isRequired, + opcode: PropTypes.string.isRequired, // eslint-disable-line react/no-unused-prop-types + params: PropTypes.object, // eslint-disable-line react/no-unused-prop-types, react/forbid-prop-types + value: PropTypes.string.isRequired // eslint-disable-line react/no-unused-prop-types +}; module.exports = Monitor; diff --git a/src/containers/sound-library.jsx b/src/containers/sound-library.jsx index d478d141a7f6d8c538a03830b7583d4d39ad990c..d82512225f5ccdadb4ce2ec548275d9f7acbfb3d 100644 --- a/src/containers/sound-library.jsx +++ b/src/containers/sound-library.jsx @@ -3,25 +3,30 @@ const PropTypes = require('prop-types'); const React = require('react'); const VM = require('scratch-vm'); const AudioEngine = require('scratch-audio'); -const LibaryComponent = require('../components/library/library.jsx'); +const LibraryComponent = require('../components/library/library.jsx'); const soundIcon = require('../components/asset-panel/icon--sound.svg'); const soundLibraryContent = require('../lib/libraries/sounds.json'); -class SoundLibrary extends React.Component { +class SoundLibrary extends React.PureComponent { constructor (props) { super(props); bindAll(this, [ 'handleItemSelected', - 'handleItemChosen' + 'handleItemMouseEnter', + 'handleItemMouseLeave' ]); } componentDidMount () { this.audioEngine = new AudioEngine(); this.player = this.audioEngine.createPlayer(); } - handleItemChosen (soundItem) { + componentWillReceiveProps (newProps) { + // Stop playing sounds if the library closes without a mouseleave (e.g. by using the escape key) + if (this.player && !newProps.visible) this.player.stopAllSounds(); + } + handleItemMouseEnter (soundItem) { const md5ext = soundItem._md5; const idParts = md5ext.split('.'); const md5 = idParts[0]; @@ -39,6 +44,9 @@ class SoundLibrary extends React.Component { this.player.playSound(soundItem._md5); }); } + handleItemMouseLeave () { + this.player.stopAllSounds(); + } handleItemSelected (soundItem) { const vmSound = { format: soundItem.format, @@ -64,11 +72,12 @@ class SoundLibrary extends React.Component { }); return ( - <LibaryComponent + <LibraryComponent data={soundLibraryThumbnailData} title="Sound Library" visible={this.props.visible} - onItemChosen={this.handleItemChosen} + onItemMouseEnter={this.handleItemMouseEnter} + onItemMouseLeave={this.handleItemMouseLeave} onItemSelected={this.handleItemSelected} onRequestClose={this.props.onRequestClose} /> diff --git a/src/containers/sound-tab.jsx b/src/containers/sound-tab.jsx index 227919dff524a8fee93616b2f1ba427feceef92a..70dfbdef7f6430f52dbb0d826e38cbfd58778fd8 100644 --- a/src/containers/sound-tab.jsx +++ b/src/containers/sound-tab.jsx @@ -23,6 +23,20 @@ class SoundTab extends React.Component { this.state = {selectedSoundIndex: 0}; } + componentWillReceiveProps (nextProps) { + const { + editingTarget, + sprites, + stage + } = nextProps; + + const target = editingTarget && sprites[editingTarget] ? sprites[editingTarget] : stage; + + if (target && target.sounds && this.state.selectedSoundIndex > target.sounds.length - 1) { + this.setState({selectedSoundIndex: target.sounds.length - 1}); + } + } + handleSelectSound (soundIndex) { const sound = this.props.vm.editingTarget.sprite.sounds[soundIndex]; this.props.vm.editingTarget.audioPlayer.playSound(sound.md5); @@ -30,17 +44,7 @@ class SoundTab extends React.Component { } handleDeleteSound (soundIndex) { - // @todo the VM should handle all of this logic - const {editingTarget} = this.props.vm; - editingTarget.sprite.sounds = editingTarget.sprite.sounds - .slice(0, soundIndex) - .concat(editingTarget.sprite.sounds.slice(soundIndex + 1)); - this.props.vm.emitTargetsUpdate(); - this.props.vm.runtime.requestRedraw(); - - this.setState({ - selectedSoundIndex: this.state.selectedSoundIndex % editingTarget.sprite.sounds.length - }); + this.props.vm.deleteSound(soundIndex); } render () { diff --git a/src/containers/sprite-library.jsx b/src/containers/sprite-library.jsx index c08748eb2337728cd862fe051b78b0da03dfe22e..6395b421a7abb0664b334a8839105067548c9f0e 100644 --- a/src/containers/sprite-library.jsx +++ b/src/containers/sprite-library.jsx @@ -5,24 +5,70 @@ const VM = require('scratch-vm'); const spriteLibraryContent = require('../lib/libraries/sprites.json'); -const LibaryComponent = require('../components/library/library.jsx'); +const LibraryComponent = require('../components/library/library.jsx'); -class SpriteLibrary extends React.Component { +class SpriteLibrary extends React.PureComponent { constructor (props) { super(props); bindAll(this, [ - 'handleItemSelect' + 'handleItemSelect', + 'handleMouseEnter', + 'handleMouseLeave', + 'rotateCostume', + 'startRotatingCostumes', + 'stopRotatingCostumes' ]); + this.state = { + activeSprite: null, + costumeIndex: 0, + sprites: spriteLibraryContent + }; + } + componentWillReceiveProps (newProps) { + if (!newProps.visible) clearInterval(this.intervalId); } handleItemSelect (item) { this.props.vm.addSprite2(JSON.stringify(item.json)); } + handleMouseEnter (item) { + this.stopRotatingCostumes(); + this.setState({activeSprite: item}, this.startRotatingCostumes); + } + handleMouseLeave () { + this.stopRotatingCostumes(); + } + startRotatingCostumes () { + if (!this.state.activeSprite) return; + this.rotateCostume(); + this.intervalId = setInterval(this.rotateCostume, 300); + } + stopRotatingCostumes () { + this.intervalId = clearInterval(this.intervalId); + } + rotateCostume () { + const costumes = this.state.activeSprite.json.costumes; + const nextCostumeIndex = (this.state.costumeIndex + 1) % costumes.length; + this.setState({ + costumeIndex: nextCostumeIndex, + sprites: this.state.sprites.map(sprite => { + if (sprite.name === this.state.activeSprite.name) { + return { + ...sprite, + md5: sprite.json.costumes[nextCostumeIndex].baseLayerMD5 + }; + } + return sprite; + }) + }); + } render () { return ( - <LibaryComponent - data={spriteLibraryContent} + <LibraryComponent + data={this.state.sprites} title="Sprite Library" visible={this.props.visible} + onItemMouseEnter={this.handleMouseEnter} + onItemMouseLeave={this.handleMouseLeave} onItemSelected={this.handleItemSelect} onRequestClose={this.props.onRequestClose} /> diff --git a/src/css/units.css b/src/css/units.css index ab4393ac1afefb3d770289b67b7c1b8983e6c2b9..3f9aaba17d8319e322b48c817438ed4e8b92458e 100644 --- a/src/css/units.css +++ b/src/css/units.css @@ -3,5 +3,7 @@ $space: 0.5rem; $sprites-per-row: 5; $menu-bar-height: 3rem; -$sprite-info-height: 5.25rem; /* TODO: SpriteInfo isn't explicitly set to this height yet */ +$sprite-info-height: 5.25rem; /* @todo: SpriteInfo isn't explicitly set to this height yet */ $stage-menu-height: 3rem; + +$library-header-height: 4.375rem; \ No newline at end of file diff --git a/src/lib/libraries/sprites.json b/src/lib/libraries/sprites.json index d97ab0b03df19d2df28d891b9dba98625e3a4c63..cc1bc3df364cbbbe02e1ce62470045005bea90a1 100644 --- a/src/lib/libraries/sprites.json +++ b/src/lib/libraries/sprites.json @@ -1,142 +1,63 @@ [ { - "name": "A-block", - "md5": "602a16930a8050e1298e1a0ae844363e.svg", + "name": "Abby", + "md5": "afab2d2141e9811bd89e385e9628cb5f.svg", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "A-block", + "objName": "Abby", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "abby-a", + "baseLayerID": -1, + "baseLayerMD5": "afab2d2141e9811bd89e385e9628cb5f.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 100 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "abby-b", + "baseLayerID": -1, + "baseLayerMD5": "1e0116c7c2e5e80c679d0b33f1f5cfb7.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 100 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "abby-c", + "baseLayerID": -1, + "baseLayerMD5": "b6e23922f23b49ddc6f62f675e77417c.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 100 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "a-block", + "costumeName": "abby-d", "baseLayerID": -1, - "baseLayerMD5": "602a16930a8050e1298e1a0ae844363e.svg", + "baseLayerMD5": "2193cf08f74b8354f7c4fac37a06ea24.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 38 + "rotationCenterX": 31, + "rotationCenterY": 100 } ], "currentCostumeIndex": 0, @@ -152,13 +73,15 @@ } }, { - "name": "B-block", - "md5": "f8c683cf71660e8ac1f8855599857a25.svg", + "name": "Airplane", + "md5": "58bcb130f226bda9017f1a443360a78a.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "transportation", + "flying", + "city", + "photo", + "bitmap" ], "info": [ 0, @@ -166,129 +89,24 @@ 1 ], "json": { - "objName": "B-block", + "objName": "Airplane", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "b-block", + "costumeName": "airplane2", "baseLayerID": -1, - "baseLayerMD5": "f8c683cf71660e8ac1f8855599857a25.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 42 + "baseLayerMD5": "58bcb130f226bda9017f1a443360a78a.png", + "rotationCenterX": 100, + "rotationCenterY": 32 } ], "currentCostumeIndex": 0, @@ -304,13 +122,14 @@ } }, { - "name": "C-block", - "md5": "f8f4cc686ffc5a4113a99f70b09abd32.svg", + "name": "Amon", + "md5": "8d508770c1991fe05959c9b3b5167036.gif", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "flying", + "photo", + "bitmap" ], "info": [ 0, @@ -318,129 +137,24 @@ 1 ], "json": { - "objName": "C-block", + "objName": "Amon", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "c-block", + "costumeName": "amon", "baseLayerID": -1, - "baseLayerMD5": "f8f4cc686ffc5a4113a99f70b09abd32.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 43 + "baseLayerMD5": "8d508770c1991fe05959c9b3b5167036.gif", + "rotationCenterX": 87, + "rotationCenterY": 81 } ], "currentCostumeIndex": 0, @@ -456,146 +170,195 @@ } }, { - "name": "D-block", - "md5": "aee2d71ef0293b33479bff9423d16b67.svg", + "name": "Anina Hip-Hop", + "md5": "6d01c961449223f9e61dda9281100806.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 13, 1 ], "json": { - "objName": "D-block", + "objName": "Anina Hip-Hop", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance celebrate", + "soundID": -1, + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" + "costumeName": "anina stance", + "baseLayerID": -1, + "baseLayerMD5": "6d01c961449223f9e61dda9281100806.png", + "bitmapResolution": 2, + "rotationCenterX": 76, + "rotationCenterY": 252 }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "anina top stand", + "baseLayerID": -1, + "baseLayerMD5": "34d6362cb4030d92be6fec73300f0aec.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 280 }, { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "anina top R step", + "baseLayerID": -1, + "baseLayerMD5": "0477f7105d02b9a902382eca080476dc.png", + "bitmapResolution": 2, + "rotationCenterX": 248, + "rotationCenterY": 272 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "anina top L step", + "baseLayerID": -1, + "baseLayerMD5": "62a89d8c6f7680e342132fcde59b2a5d.png", + "bitmapResolution": 2, + "rotationCenterX": 228, + "rotationCenterY": 274 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "anina top freeze", + "baseLayerID": -1, + "baseLayerMD5": "dd67565519bdebea1b931deb19621384.png", + "bitmapResolution": 2, + "rotationCenterX": 110, + "rotationCenterY": 268 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "anina R cross", + "baseLayerID": -1, + "baseLayerMD5": "22f3ca23b2f0ac67f8ebc36a8c3116a0.png", + "bitmapResolution": 2, + "rotationCenterX": 126, + "rotationCenterY": 268 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "anina pop front", + "baseLayerID": -1, + "baseLayerMD5": "c163f1002f61421816386e52522b9133.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 270 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "anina pop down", + "baseLayerID": -1, + "baseLayerMD5": "e9e54ff1fa61c71507e25540d0326177.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 156 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "anina pop left", + "baseLayerID": -1, + "baseLayerMD5": "9fda30f66d51b2ad5f6fe11d57e199d6.png", + "bitmapResolution": 2, + "rotationCenterX": 238, + "rotationCenterY": 266 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "anina pop right", + "baseLayerID": -1, + "baseLayerMD5": "cc2594e9278494e82f725be34369f178.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 268 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "anina pop L arm", + "baseLayerID": -1, + "baseLayerMD5": "843bff4a5ee3d61fd8cbd419cb2797a3.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 274 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "anina pop stand", + "baseLayerID": -1, + "baseLayerMD5": "de7cab2c8d567d49a5a1f378b5709bb4.png", + "bitmapResolution": 2, + "rotationCenterX": 76, + "rotationCenterY": 276 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "costumeName": "anina pop R arm", + "baseLayerID": -1, + "baseLayerMD5": "e7e1a86233b7ad28d6ee9970b152be20.png", + "bitmapResolution": 2, + "rotationCenterX": 88, + "rotationCenterY": 272 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Anna", + "md5": "23ab3e9be3be672fa2c43571e92b2b3e.png", + "type": "sprite", + "tags": [ + "people", + "city", + "photo", + "bitmap" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Anna", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "d-block", + "costumeName": "anna-a", "baseLayerID": -1, - "baseLayerMD5": "aee2d71ef0293b33479bff9423d16b67.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 41 + "baseLayerMD5": "23ab3e9be3be672fa2c43571e92b2b3e.png", + "rotationCenterX": 76, + "rotationCenterY": 87 + }, + { + "costumeName": "anna-b", + "baseLayerID": -1, + "baseLayerMD5": "25b8d4f7eae0add3bc24c20f5f17ada9.png", + "rotationCenterX": 57, + "rotationCenterY": 110 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -608,146 +371,162 @@ } }, { - "name": "E-block", - "md5": "16c6257316ff94cc7539ccdfc24e5fb8.svg", + "name": "Anna Ode to Code", + "md5": "74b5e9c882deb81d88c175d548b8ff66.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "photo", + "bitmap" ], "info": [ - 0, 1, + 14, 1 ], "json": { - "objName": "E-block", + "objName": "Anna Ode to Code", + "scripts": [ + [ + 8, + 77.65, + [ + [ + "whenKeyPressed", + "space" + ], + [ + "nextCostume" + ] + ] + ] + ], "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "odesong-b", + "soundID": -1, + "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", + "sampleCount": 212553, "rate": 22050, "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" + "costumeName": "anna01", + "baseLayerID": -1, + "baseLayerMD5": "74b5e9c882deb81d88c175d548b8ff66.png", + "bitmapResolution": 2, + "rotationCenterX": 78, + "rotationCenterY": 190 }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "anna02", + "baseLayerID": -1, + "baseLayerMD5": "ece557e1c4500b30fd0e22b0d693cf4c.png", + "bitmapResolution": 2, + "rotationCenterX": 132, + "rotationCenterY": 260 }, { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "anna03", + "baseLayerID": -1, + "baseLayerMD5": "2e97d9d9d6bc1f174d3fc897638e8a46.png", + "bitmapResolution": 2, + "rotationCenterX": 138, + "rotationCenterY": 242 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "anna04", + "baseLayerID": -1, + "baseLayerMD5": "69da72a9a29181425944e7963eb4f32a.png", + "bitmapResolution": 2, + "rotationCenterX": 138, + "rotationCenterY": 70 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "anna05", + "baseLayerID": -1, + "baseLayerMD5": "1b396abf1336bceddb01166d975dad3b.png", + "bitmapResolution": 2, + "rotationCenterX": 134, + "rotationCenterY": 246 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "anna06", + "baseLayerID": -1, + "baseLayerMD5": "d32ac2b2e9c8fa2f7b251275d8eec8c9.png", + "bitmapResolution": 2, + "rotationCenterX": 118, + "rotationCenterY": 224 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "anna07", + "baseLayerID": -1, + "baseLayerMD5": "c0961caabfa8545b6080ea7825d6fc66.png", + "bitmapResolution": 2, + "rotationCenterX": 124, + "rotationCenterY": 224 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "anna07b", + "baseLayerID": -1, + "baseLayerMD5": "c21f0ef20be25af3b7c1ed42e974c75f.png", + "bitmapResolution": 2, + "rotationCenterX": 202, + "rotationCenterY": 224 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "anna07c", + "baseLayerID": -1, + "baseLayerMD5": "54ed739e6ea31d128c319e8a3401af71.png", + "bitmapResolution": 2, + "rotationCenterX": 58, + "rotationCenterY": 218 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "anna08", + "baseLayerID": -1, + "baseLayerMD5": "2d9bffdb6cda1ce0c77cfb3e001598f3.png", + "bitmapResolution": 2, + "rotationCenterX": 126, + "rotationCenterY": 212 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "anna09", + "baseLayerID": -1, + "baseLayerMD5": "91f689627fa18d43ff6362ef872d90e2.png", + "bitmapResolution": 2, + "rotationCenterX": 130, + "rotationCenterY": 220 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "anna10", + "baseLayerID": -1, + "baseLayerMD5": "eab5b5e2c4be253de024dd3deab68a66.png", + "bitmapResolution": 2, + "rotationCenterX": 148, + "rotationCenterY": 260 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ + "costumeName": "anna11", + "baseLayerID": -1, + "baseLayerMD5": "859f95864d28fdb49d4170ce30fdd031.png", + "bitmapResolution": 2, + "rotationCenterX": 46, + "rotationCenterY": 278 + }, { - "costumeName": "e-block", + "costumeName": "anna12", "baseLayerID": -1, - "baseLayerMD5": "16c6257316ff94cc7539ccdfc24e5fb8.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 39 + "baseLayerMD5": "66133f695a23f669cc0fa6f06f275ab7.png", + "bitmapResolution": 2, + "rotationCenterX": 42, + "rotationCenterY": 206 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 13, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -760,11 +539,11 @@ } }, { - "name": "F-block", - "md5": "34c090c1f573c569332ead68cb99b595.svg", + "name": "Apple", + "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -774,129 +553,24 @@ 1 ], "json": { - "objName": "F-block", + "objName": "Apple", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "f-block", + "costumeName": "apple", "baseLayerID": -1, - "baseLayerMD5": "34c090c1f573c569332ead68cb99b595.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 40 + "baseLayerMD5": "831ccd4741a7a56d85f6698a21f4ca69.svg", + "rotationCenterX": 31, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, @@ -912,143 +586,120 @@ } }, { - "name": "G-block", - "md5": "8bb2382627004eb08ff10ea8171cc724.svg", + "name": "Arrow1", + "md5": "62f8794dd120e9b4ead4d098d50fc64b.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "G-block", + "objName": "Arrow1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + } + ], + "costumes": [ + { + "costumeName": "arrow1-a", + "baseLayerID": -1, + "baseLayerMD5": "62f8794dd120e9b4ead4d098d50fc64b.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 23 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "arrow1-b", + "baseLayerID": -1, + "baseLayerMD5": "a157dc7e33d7c7a048af933de999e397.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 23 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "arrow1-c", + "baseLayerID": -1, + "baseLayerMD5": "d3b389e91f7beb22b2b1a80af09990ee.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 28 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "arrow1-d", + "baseLayerID": -1, + "baseLayerMD5": "412717ff731e9f19003a5840054057eb.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 28 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Avery", + "md5": "21393c9114c7d34b1df7ccd12c793672.svg", + "type": "sprite", + "tags": [ + "people", + "city", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Avery", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "g-block", + "costumeName": "avery-a", "baseLayerID": -1, - "baseLayerMD5": "8bb2382627004eb08ff10ea8171cc724.svg", + "baseLayerMD5": "21393c9114c7d34b1df7ccd12c793672.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 39 + "rotationCenterX": 39, + "rotationCenterY": 94 + }, + { + "costumeName": "avery-b", + "baseLayerID": -1, + "baseLayerMD5": "cc55f2f09599edc4ae0876e8b3d187d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 94 } ], "currentCostumeIndex": 0, @@ -1064,143 +715,65 @@ } }, { - "name": "H-block", - "md5": "f1578807d4a124fc02b639a8febeaab3.svg", + "name": "Avery Walking", + "md5": "ed334e546806dfbf26d2591d7ddb12d0.svg", "type": "sprite", "tags": [ - "letters", + "people", + "city", + "walking", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "H-block", + "objName": "Avery Walking", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "avery walking-a", + "baseLayerID": -1, + "baseLayerMD5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 95 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "avery walking-b", + "baseLayerID": -1, + "baseLayerMD5": "c295731e8666ad2e1575fb4b4f82988d.svg", + "bitmapResolution": 1, + "rotationCenterX": 50, + "rotationCenterY": 102 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "avery walking-c", + "baseLayerID": -1, + "baseLayerMD5": "597a834225c9949e419dff7db1bc2453.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 95 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "h-block", + "costumeName": "avery walking-d", "baseLayerID": -1, - "baseLayerMD5": "f1578807d4a124fc02b639a8febeaab3.svg", + "baseLayerMD5": "ce9622d11d24607eec7988196b38c3c6.svg", "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 38 + "rotationCenterX": 50, + "rotationCenterY": 101 } ], "currentCostumeIndex": 0, @@ -1208,7 +781,7 @@ "scratchY": 0, "scale": 1, "direction": 90, - "rotationStyle": "normal", + "rotationStyle": "leftRight", "isDraggable": false, "indexInLibrary": 100000, "visible": true, @@ -1216,143 +789,136 @@ } }, { - "name": "I-block", - "md5": "341bc70442886d6fdf959f2a97a63554.svg", + "name": "AZ Hip-Hop", + "md5": "e64363afc7f1e6951cb7967f50de2ba7.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "bitmap" ], "info": [ 0, - 1, + 13, 1 ], "json": { - "objName": "I-block", + "objName": "AZ Hip-Hop", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance celebrate", + "soundID": -1, + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" + "costumeName": "AZ stance", + "baseLayerID": -1, + "baseLayerMD5": "e64363afc7f1e6951cb7967f50de2ba7.png", + "bitmapResolution": 2, + "rotationCenterX": 70, + "rotationCenterY": 278 }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "AZ top stand", + "baseLayerID": -1, + "baseLayerMD5": "75b370524c92025cfa6f9071a6333e00.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 274 }, { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "AZ top R step", + "baseLayerID": -1, + "baseLayerMD5": "3769dbe6e19b0e19ebf9416ba8660b88.png", + "bitmapResolution": 2, + "rotationCenterX": 200, + "rotationCenterY": 270 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "AZ top L step", + "baseLayerID": -1, + "baseLayerMD5": "3d618085bce1a68829fa2cd5deab7871.png", + "bitmapResolution": 2, + "rotationCenterX": 144, + "rotationCenterY": 266 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "AZ top freeze", + "baseLayerID": -1, + "baseLayerMD5": "ea33d5c631d8308b47685f1963becd4c.png", + "bitmapResolution": 2, + "rotationCenterX": 54, + "rotationCenterY": 258 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "AZ top R cross", + "baseLayerID": -1, + "baseLayerMD5": "44216804569454067953fdd5c6b72928.png", + "bitmapResolution": 2, + "rotationCenterX": 206, + "rotationCenterY": 252 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "AZ pop front", + "baseLayerID": -1, + "baseLayerMD5": "97c14e52551ae65679d61de6c94f0ec8.png", + "bitmapResolution": 2, + "rotationCenterX": 72, + "rotationCenterY": 266 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "AZ pop down", + "baseLayerID": -1, + "baseLayerMD5": "2f8d07b568c8c67a0d211b5de09295d3.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 188 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "AZ pop left", + "baseLayerID": -1, + "baseLayerMD5": "4e7e43a86f1f09f1194e3579e7f385f5.png", + "bitmapResolution": 2, + "rotationCenterX": 184, + "rotationCenterY": 266 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "AZ pop right", + "baseLayerID": -1, + "baseLayerMD5": "15a9d503613c649ca3a55829dbd98869.png", + "bitmapResolution": 2, + "rotationCenterX": 78, + "rotationCenterY": 276 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "AZ pop L arm", + "baseLayerID": -1, + "baseLayerMD5": "0f6462025c20ac346a7f54164832d495.png", + "bitmapResolution": 2, + "rotationCenterX": 100, + "rotationCenterY": 280 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "AZ pop stand", + "baseLayerID": -1, + "baseLayerMD5": "34b67b9e4db3aacbae735ade6a0539c2.png", + "bitmapResolution": 2, + "rotationCenterX": 92, + "rotationCenterY": 280 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "i-block", + "costumeName": "AZ pop R arm", "baseLayerID": -1, - "baseLayerMD5": "341bc70442886d6fdf959f2a97a63554.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 39 + "baseLayerMD5": "129472ac2779eb6bc2dd9bfbf0d33f56.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 278 } ], "currentCostumeIndex": 0, @@ -1368,143 +934,72 @@ } }, { - "name": "J-block", - "md5": "4b420cce964beedf2c1dc43faa59fdec.svg", + "name": "Ball", + "md5": "10117ddaefa98d819f2b1df93805622f.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", + "sports", "vector" ], "info": [ 0, - 1, + 5, 1 ], "json": { - "objName": "J-block", + "objName": "Ball", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "ball-a", + "baseLayerID": -1, + "baseLayerMD5": "10117ddaefa98d819f2b1df93805622f.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "ball-b", + "baseLayerID": -1, + "baseLayerMD5": "6e6330cad7750ea7e9dc88402661deb8.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "ball-c", + "baseLayerID": -1, + "baseLayerMD5": "bb45ed5db278f15c17c012c34a6b160f.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "ball-d", + "baseLayerID": -1, + "baseLayerMD5": "5d494659deae5c0de06b5885f5524276.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "j-block", + "costumeName": "ball-e", "baseLayerID": -1, - "baseLayerMD5": "4b420cce964beedf2c1dc43faa59fdec.svg", + "baseLayerMD5": "e80c98bc62fd32e8df81642af11ffb1a.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 41 + "rotationCenterX": 22, + "rotationCenterY": 22 } ], "currentCostumeIndex": 0, @@ -1520,12 +1015,13 @@ } }, { - "name": "K-block", - "md5": "19601cc33449813aa93a47c63167e5c1.svg", + "name": "Ball-Soccer", + "md5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", + "sports", "vector" ], "info": [ @@ -1534,129 +1030,25 @@ 1 ], "json": { - "objName": "K-block", + "objName": "Ball-Soccer", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "k-block", + "costumeName": "ball-soccer", "baseLayerID": -1, - "baseLayerMD5": "19601cc33449813aa93a47c63167e5c1.svg", + "baseLayerMD5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 40 + "rotationCenterX": 32, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, @@ -1672,143 +1064,162 @@ } }, { - "name": "L-block", - "md5": "87358e3c9b9f5be4376253ce08d0192d.svg", + "name": "Ballerina", + "md5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", "type": "sprite", "tags": [ - "letters", + "people", + "dance", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "L-block", + "objName": "Ballerina", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "ballerina-a", + "baseLayerID": -1, + "baseLayerMD5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "ballerina-b", + "baseLayerID": -1, + "baseLayerMD5": "8bc5e47fb1439e29e11e9e3f2e20c6de.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "ballerina-c", + "baseLayerID": -1, + "baseLayerMD5": "6d3a07761b294f705987b0af58f8e335.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "ballerina-d", + "baseLayerID": -1, + "baseLayerMD5": "c3164795edf39e436272f425b4f5e487.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 3, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Balloon1", + "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Balloon1", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "balloon1-a", + "baseLayerID": -1, + "baseLayerMD5": "bc96a1fb5fe794377acd44807e421ce2.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 94 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "balloon1-b", + "baseLayerID": -1, + "baseLayerMD5": "d7bb51d9c38af6314bd2b4058d2a592d.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 94 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "costumeName": "balloon1-c", + "baseLayerID": -1, + "baseLayerMD5": "247cef27b665d77d9efaca69327cae77.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 94 } ], + "currentCostumeIndex": 2, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bananas", + "md5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "type": "sprite", + "tags": [ + "things", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 0 + ], + "json": { + "objName": "Bananas", "costumes": [ { - "costumeName": "l-block", + "costumeName": "bananas", "baseLayerID": -1, - "baseLayerMD5": "87358e3c9b9f5be4376253ce08d0192d.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 40 + "baseLayerMD5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "rotationCenterX": 36, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -1824,11 +1235,12 @@ } }, { - "name": "M-block", - "md5": "7ba0642be1f0080c0d273ea96e29b1e8.svg", + "name": "Baseball", + "md5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", "type": "sprite", "tags": [ - "letters", + "things", + "sports", "drawing", "vector" ], @@ -1838,129 +1250,24 @@ 1 ], "json": { - "objName": "M-block", + "objName": "Baseball", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "m-block", + "costumeName": "baseball", "baseLayerID": -1, - "baseLayerMD5": "7ba0642be1f0080c0d273ea96e29b1e8.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 37 + "baseLayerMD5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", + "rotationCenterX": 34, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, @@ -1976,143 +1283,30 @@ } }, { - "name": "N-block", - "md5": "6c1fbc57821744bd9356ce9a21ed70f7.svg", + "name": "Basketball", + "md5": "ac3432618ac868309f502024aa78423c.svg", "type": "sprite", "tags": [ - "letters", + "things", + "sports", "drawing", "vector" ], "info": [ 0, 1, - 1 + 0 ], "json": { - "objName": "N-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], + "objName": "Basketball", "costumes": [ { - "costumeName": "n-block", + "costumeName": "basketball", "baseLayerID": -1, - "baseLayerMD5": "6c1fbc57821744bd9356ce9a21ed70f7.svg", + "baseLayerMD5": "ac3432618ac868309f502024aa78423c.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 37 + "rotationCenterX": 36, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -2128,143 +1322,96 @@ } }, { - "name": "O-block", - "md5": "e88638200a73e167d0e266a343019cec.svg", + "name": "Bass", + "md5": "bdbd2876847e54309a5ff3ee0895d724.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, 1, - 1 + 8 ], "json": { - "objName": "O-block", + "objName": "Bass", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "C bass", + "soundID": -1, + "md5": "c3566ec797b483acde28f790994cc409.wav", + "sampleCount": 44608, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, "format": "" }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "D bass", + "soundID": -1, + "md5": "5a3ae8a2665f50fdc38cc301fbac79ba.wav", + "sampleCount": 40192, "rate": 22050, "format": "" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "E bass", + "soundID": -1, + "md5": "0657e39bae81a232b01a18f727d3b891.wav", + "sampleCount": 36160, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "F bass", + "soundID": -1, + "md5": "ea21bdae86f70d60b28f1dddcf50d104.wav", + "sampleCount": 34368, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "G bass", + "soundID": -1, + "md5": "05c192194e8f1944514dce3833e33439.wav", + "sampleCount": 30976, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "A bass", + "soundID": -1, + "md5": "c04ebf21e5e19342fa1535e4efcdb43b.wav", + "sampleCount": 28160, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "B bass", + "soundID": -1, + "md5": "e31dcaf7bcdf58ac2a26533c48936c45.wav", + "sampleCount": 25792, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "C2 bass", + "soundID": -1, + "md5": "667d6c527b79321d398e85b526f15b99.wav", + "sampleCount": 24128, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "o-block", + "costumeName": "bass", "baseLayerID": -1, - "baseLayerMD5": "e88638200a73e167d0e266a343019cec.svg", + "baseLayerMD5": "bdbd2876847e54309a5ff3ee0895d724.svg", "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 40 + "rotationCenterX": 60, + "rotationCenterY": 110 } ], "currentCostumeIndex": 0, @@ -2280,143 +1427,46 @@ } }, { - "name": "P-block", - "md5": "ad2fc3a1c6538678915633a11ab6ec73.svg", + "name": "Bat1", + "md5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "P-block", + "objName": "Bat1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "p-block", + "costumeName": "bat1-a ", "baseLayerID": -1, - "baseLayerMD5": "ad2fc3a1c6538678915633a11ab6ec73.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 33 + "baseLayerMD5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "bat1-b ", + "baseLayerID": -1, + "baseLayerMD5": "f127434672b872a902346ef3c1af45f2.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -2432,143 +1482,46 @@ } }, { - "name": "Q-block", - "md5": "64da9da8684c74deb567dbdb661d3a52.svg", + "name": "Bat2", + "md5": "647d4bd53163f94a7dabf623ccab7fd3.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Q-block", + "objName": "Bat2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "q-block", + "costumeName": "bat2-a ", "baseLayerID": -1, - "baseLayerMD5": "64da9da8684c74deb567dbdb661d3a52.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 33 + "baseLayerMD5": "647d4bd53163f94a7dabf623ccab7fd3.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "bat2-b ", + "baseLayerID": -1, + "baseLayerMD5": "8aa1d20e4f7761becbe9bafa75290465.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -2584,11 +1537,12 @@ } }, { - "name": "R-block", - "md5": "73e8d46f7475476d8cb4cfcfc75ee50d.svg", + "name": "Beachball", + "md5": "87d64cab74c64b31498cc85f07510ee4.svg", "type": "sprite", "tags": [ - "letters", + "things", + "sports", "drawing", "vector" ], @@ -2598,129 +1552,138 @@ 1 ], "json": { - "objName": "R-block", + "objName": "Beachball", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "beachball", + "baseLayerID": -1, + "baseLayerMD5": "87d64cab74c64b31498cc85f07510ee4.svg", + "rotationCenterX": 34, + "rotationCenterY": 33 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bear1", + "md5": "598722f70e86e6f9b23ef97680baaa9c.svg", + "type": "sprite", + "tags": [ + "animals", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Bear1", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "plunge", + "soundID": -1, + "md5": "c09455ee9da0e7eeead42d4e73c2555d.wav", + "sampleCount": 22400, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "bear1-a", + "baseLayerID": -1, + "baseLayerMD5": "598722f70e86e6f9b23ef97680baaa9c.svg", + "bitmapResolution": 1, + "rotationCenterX": 56, + "rotationCenterY": 93 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "bear1-b", + "baseLayerID": -1, + "baseLayerMD5": "76ceb0de4409f42713b50cbc1fb45af5.svg", + "bitmapResolution": 1, + "rotationCenterX": 56, + "rotationCenterY": 93 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bear2", + "md5": "3eb8e16a983ff23c418374389c81bd30.svg", + "type": "sprite", + "tags": [ + "animals", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Bear2", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "r-block", + "costumeName": "bear2-a", "baseLayerID": -1, - "baseLayerMD5": "73e8d46f7475476d8cb4cfcfc75ee50d.svg", + "baseLayerMD5": "3eb8e16a983ff23c418374389c81bd30.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 33 + "rotationCenterX": 37, + "rotationCenterY": 42 + }, + { + "costumeName": "bear2-b", + "baseLayerID": -1, + "baseLayerMD5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg", + "bitmapResolution": 1, + "rotationCenterX": 51, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -2736,11 +1699,11 @@ } }, { - "name": "S-block", - "md5": "9feb5593fed51e88dbb3128cfc290d29.svg", + "name": "Beetle", + "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -2750,129 +1713,81 @@ 1 ], "json": { - "objName": "S-block", + "objName": "Beetle", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + "costumeName": "beetle", + "baseLayerID": -1, + "baseLayerMD5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "rotationCenterX": 43, + "rotationCenterY": 38 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bell", + "md5": "f35056c772395455d703773657e1da6e.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 2 + ], + "json": { + "objName": "Bell", + "sounds": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, + "soundName": "xylo1", + "soundID": -1, + "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", + "sampleCount": 238232, "rate": 22050, "format": "adpcm" }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "bell toll", + "soundID": -1, + "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", + "sampleCount": 45168, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "s-block", + "costumeName": "bell1", "baseLayerID": -1, - "baseLayerMD5": "9feb5593fed51e88dbb3128cfc290d29.svg", + "baseLayerMD5": "f35056c772395455d703773657e1da6e.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 30 + "rotationCenterX": 59, + "rotationCenterY": 69 } ], "currentCostumeIndex": 0, @@ -2888,143 +1803,48 @@ } }, { - "name": "T-block", - "md5": "d29c1caf5cf195740c38f279e82a77a4.svg", + "name": "Bells", + "md5": "1f151bee966df3f0c41138941713280e.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "T-block", + "objName": "Bells", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "xylo1", + "soundID": -1, + "md5": "5c6964021197fdd4ff46a0f107e6d624.wav", + "sampleCount": 238995, "rate": 22050, "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "bells-a", + "baseLayerID": -1, + "baseLayerMD5": "1f151bee966df3f0c41138941713280e.svg", + "bitmapResolution": 1, + "rotationCenterX": 53, + "rotationCenterY": 51 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "t-block", + "costumeName": "bells-b", "baseLayerID": -1, - "baseLayerMD5": "d29c1caf5cf195740c38f279e82a77a4.svg", + "baseLayerMD5": "5b3879a162881aed93169bf0a6680f45.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 33 + "rotationCenterX": 48, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, @@ -3040,149 +1860,53 @@ } }, { - "name": "U-block", - "md5": "faef46b7bf589c36300142f6f03c5d32.svg", + "name": "Bowl", + "md5": "86f616639846f06fef29931e6b9b59de.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, 1, - 1 + 2 ], "json": { - "objName": "U-block", + "objName": "Bowl", "sounds": [ { "soundName": "boing", - "soundID": 0, + "soundID": -1, "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", "sampleCount": 6804, "rate": 22050, "format": "adpcm" }, { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "water drop", + "soundID": -1, + "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", + "sampleCount": 8136, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "u-block", + "costumeName": "bowl-a", "baseLayerID": -1, - "baseLayerMD5": "faef46b7bf589c36300142f6f03c5d32.svg", + "baseLayerMD5": "86f616639846f06fef29931e6b9b59de.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 41 + "rotationCenterX": 30, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 1.2500000000000002, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -3192,146 +1916,114 @@ } }, { - "name": "V-block", - "md5": "65e2f4821ab084827e22920acb61c92b.svg", + "name": "Bowtie", + "md5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "V-block", + "objName": "Bowtie", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "bowtie-a", + "baseLayerID": -1, + "baseLayerMD5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "bitmapResolution": 1, + "rotationCenterX": 11, + "rotationCenterY": 4 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "bowtie-b", + "baseLayerID": -1, + "baseLayerMD5": "8be1e90e19cd1faced8a2e83c2b5c90d.svg", + "bitmapResolution": 1, + "rotationCenterX": 11, + "rotationCenterY": 4 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1.6, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": true, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Breakdancer1", + "md5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", + "type": "sprite", + "tags": [ + "people", + "dance", + "city", + "drawing", + "bitmap" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Breakdancer1", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "breakdancer1-a", + "baseLayerID": -1, + "baseLayerMD5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", + "rotationCenterX": 113, + "rotationCenterY": 90 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "breakdancer1-b", + "baseLayerID": -1, + "baseLayerMD5": "84bcb1be206e8653a7d97549733c3db5.png", + "rotationCenterX": 30, + "rotationCenterY": 90 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "v-block", + "costumeName": "breakdancer1-c", "baseLayerID": -1, - "baseLayerMD5": "65e2f4821ab084827e22920acb61c92b.svg", - "bitmapResolution": 1, + "baseLayerMD5": "b345babf9f78b5e88a288a4b13a7ca29.png", "rotationCenterX": 35, - "rotationCenterY": 41 + "rotationCenterY": 90 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 2, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -3344,143 +2036,113 @@ } }, { - "name": "W-block", - "md5": "5ab197b4f70b2f98a3658c7ccdc3351d.svg", + "name": "Buildings", + "md5": "d713270e235851e5962becd73a951771.svg", "type": "sprite", "tags": [ - "letters", + "city", + "flying", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 10, 1 ], "json": { - "objName": "W-block", + "objName": "Buildings", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "building-a", + "baseLayerID": -1, + "baseLayerMD5": "d713270e235851e5962becd73a951771.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 30 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "building-b", + "baseLayerID": -1, + "baseLayerMD5": "8c2d59c50a97d33b096f629258f02be6.svg", + "bitmapResolution": 1, + "rotationCenterX": 46, + "rotationCenterY": -11 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "building-c", + "baseLayerID": -1, + "baseLayerMD5": "7f3f51f495c39809bed95991dfa1f80d.svg", + "bitmapResolution": 1, + "rotationCenterX": 25, + "rotationCenterY": 17 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "building-d", + "baseLayerID": -1, + "baseLayerMD5": "61ba83d6bded299dd91168eb24cd379f.svg", + "bitmapResolution": 1, + "rotationCenterX": 59, + "rotationCenterY": -10 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "building-e", + "baseLayerID": -1, + "baseLayerMD5": "1beeb8f034a1128c9a799297b0b7fc26.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 55 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "building-f", + "baseLayerID": -1, + "baseLayerMD5": "451e0a565e95d945fe2addfe609ee9df.svg", + "bitmapResolution": 1, + "rotationCenterX": 41, + "rotationCenterY": 27 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "building-g", + "baseLayerID": -1, + "baseLayerMD5": "58b3c9b7a41dde698fa2b427b502c1fa.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": -65 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "building-h", + "baseLayerID": -1, + "baseLayerMD5": "e952c8b14eeac894302d07d37a45ed99.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 136 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "building-i", + "baseLayerID": -1, + "baseLayerMD5": "b00b1123e3bfcb600242528d059ffcfb.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": -12 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "w-block", + "costumeName": "building-j", "baseLayerID": -1, - "baseLayerMD5": "5ab197b4f70b2f98a3658c7ccdc3351d.svg", + "baseLayerMD5": "e08fd1a7397efcfe0e3691f945693cb4.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 39 + "rotationCenterX": 29, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -3496,13 +2158,14 @@ } }, { - "name": "X-block", - "md5": "cb9dff35f05e823d954e47e4a717a48c.svg", + "name": "Bus", + "md5": "66895930177178ea01d9e610917f8acf.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "transportation", + "city", + "photo", + "bitmap" ], "info": [ 0, @@ -3510,129 +2173,24 @@ 1 ], "json": { - "objName": "X-block", + "objName": "Bus", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "x-block", + "costumeName": "bus", "baseLayerID": -1, - "baseLayerMD5": "cb9dff35f05e823d954e47e4a717a48c.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 32 + "baseLayerMD5": "66895930177178ea01d9e610917f8acf.png", + "rotationCenterX": 120, + "rotationCenterY": 35 } ], "currentCostumeIndex": 0, @@ -3648,143 +2206,46 @@ } }, { - "name": "Y-block", - "md5": "4c13c440bcb35c8c3aa6226374fced3f.svg", + "name": "Butterfly1", + "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Y-block", + "objName": "Butterfly1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "y-block", + "costumeName": "butterfly1-a", "baseLayerID": -1, - "baseLayerMD5": "4c13c440bcb35c8c3aa6226374fced3f.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 33 + "baseLayerMD5": "836d4cc7889f4a1cbcb0303934f31f79.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "butterfly1-b ", + "baseLayerID": -1, + "baseLayerMD5": "55dd0671a359d7c35f7b78f4176660e8.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -3800,12 +2261,13 @@ } }, { - "name": "Z-block", - "md5": "0ccff1898f1bf1b25333d581db09fae2.svg", + "name": "Butterfly2", + "md5": "a0216895beade6afc6d42bd5bb43faea.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ @@ -3814,129 +2276,24 @@ 1 ], "json": { - "objName": "Z-block", + "objName": "Butterfly2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "z-block", + "costumeName": "butterfly2 ", "baseLayerID": -1, - "baseLayerMD5": "0ccff1898f1bf1b25333d581db09fae2.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 38 + "baseLayerMD5": "a0216895beade6afc6d42bd5bb43faea.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -3952,12 +2309,13 @@ } }, { - "name": "A-Glow", - "md5": "d5aa299350c24c747200a64b63b1aa52.svg", + "name": "Butterfly3", + "md5": "8907a43cf08b0a9134969023be2074c5.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ @@ -3966,129 +2324,24 @@ 1 ], "json": { - "objName": "A-Glow", + "objName": "Butterfly3", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "A-glow", + "costumeName": "butterfly3 ", "baseLayerID": -1, - "baseLayerMD5": "d5aa299350c24c747200a64b63b1aa52.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 37 + "baseLayerMD5": "8907a43cf08b0a9134969023be2074c5.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -4104,11 +2357,11 @@ } }, { - "name": "B-Glow", - "md5": "a2e95f268a6cab03f3e94b3b0b792d83.svg", + "name": "Button1", + "md5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -4118,129 +2371,24 @@ 1 ], "json": { - "objName": "B-Glow", + "objName": "Button1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "B-glow", + "costumeName": "button1", "baseLayerID": -1, - "baseLayerMD5": "a2e95f268a6cab03f3e94b3b0b792d83.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 35 + "baseLayerMD5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -4256,143 +2404,45 @@ } }, { - "name": "C-Glow", - "md5": "9779a4a40934f04a4bf84920b258d7c9.svg", + "name": "Button2", + "md5": "c0051ff23e9aae78295964206793c1e3.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "C-Glow", + "objName": "Button2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "C-glow", + "costumeName": "button2-a", "baseLayerID": -1, - "baseLayerMD5": "9779a4a40934f04a4bf84920b258d7c9.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 35 + "baseLayerMD5": "c0051ff23e9aae78295964206793c1e3.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 + }, + { + "costumeName": "button2-b", + "baseLayerID": -1, + "baseLayerMD5": "712a561dc0ad66e348b8247e566b50ef.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -4408,143 +2458,45 @@ } }, { - "name": "D-Glow", - "md5": "3555b8bbbbcdc00354bf6fa81ac7042f.svg", + "name": "Button3", + "md5": "ffb2a9c21084c58fdb677c8d12a97519.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "D-Glow", + "objName": "Button3", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "D-glow", + "costumeName": "button3-a", "baseLayerID": -1, - "baseLayerMD5": "3555b8bbbbcdc00354bf6fa81ac7042f.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 35 + "baseLayerMD5": "ffb2a9c21084c58fdb677c8d12a97519.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 + }, + { + "costumeName": "button3-b", + "baseLayerID": -1, + "baseLayerMD5": "7a9ccb55e4da36f48811ab125d2492e0.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -4560,143 +2512,47 @@ } }, { - "name": "E-Glow", - "md5": "44dbc655d5ac9f13618473848e23484e.svg", + "name": "Button4", + "md5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "E-Glow", + "objName": "Button4", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "E-glow", + "costumeName": "button4-a", "baseLayerID": -1, - "baseLayerMD5": "44dbc655d5ac9f13618473848e23484e.svg", + "baseLayerMD5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 38 + "rotationCenterX": 35, + "rotationCenterY": 34 + }, + { + "costumeName": "button4-b", + "baseLayerID": -1, + "baseLayerMD5": "840f4ef01849e459fd84f5470a3b0080.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, @@ -4712,143 +2568,47 @@ } }, { - "name": "F-Glow", - "md5": "dec417e749e43d7de3985155f5f5a7a0.svg", + "name": "Button5", + "md5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "F-Glow", + "objName": "Button5", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "F-glow", + "costumeName": "button5-a", "baseLayerID": -1, - "baseLayerMD5": "dec417e749e43d7de3985155f5f5a7a0.svg", + "baseLayerMD5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 41 + "rotationCenterX": 72, + "rotationCenterY": 72 + }, + { + "costumeName": "button5-b", + "baseLayerID": -1, + "baseLayerMD5": "54cd55512f7571060e6e64168e541222.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -4864,143 +2624,38 @@ } }, { - "name": "G-Glow", - "md5": "cf4aa465cd8fb7049cc571d7546a7eb1.svg", + "name": "Cake", + "md5": "97ab3596dc06510e963fa29795e663bf.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, - 1 + 2, + 0 ], "json": { - "objName": "G-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "objName": "Cake", + "costumes": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "cake-a", + "baseLayerID": -1, + "baseLayerMD5": "97ab3596dc06510e963fa29795e663bf.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 50 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "G-glow", + "costumeName": "cake-b", "baseLayerID": -1, - "baseLayerMD5": "cf4aa465cd8fb7049cc571d7546a7eb1.svg", + "baseLayerMD5": "61d5481955a2f42cb843d09506f6744e.svg", "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 39 + "rotationCenterX": 64, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -5016,146 +2671,48 @@ } }, { - "name": "H-Glow", - "md5": "8d9bd5f00ea1ac6f92d0f97ee491b0f3.svg", + "name": "Calvrett", + "md5": "82b2f97fec9083cad502a781fe88929b.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "photo", + "bitmap" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "H-Glow", + "objName": "Calvrett", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "H-glow", + "costumeName": "calvrett jumping", "baseLayerID": -1, - "baseLayerMD5": "8d9bd5f00ea1ac6f92d0f97ee491b0f3.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 46 + "baseLayerMD5": "82b2f97fec9083cad502a781fe88929b.png", + "rotationCenterX": 84, + "rotationCenterY": 108 + }, + { + "costumeName": "calvrett thinking", + "baseLayerID": -1, + "baseLayerMD5": "b8d2409e58b663020353c08fb029b7e6.png", + "rotationCenterX": 54, + "rotationCenterY": 85 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -5168,143 +2725,97 @@ } }, { - "name": "I-Glow", - "md5": "0e86de55840103dcd50199ab2b765de7.svg", + "name": "Candle", + "md5": "9bb90825b1d7c360aa47ee18883cd3cd.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "I-Glow", + "objName": "Candle", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "candle1-a", + "baseLayerID": -1, + "baseLayerMD5": "9bb90825b1d7c360aa47ee18883cd3cd.svg", + "bitmapResolution": 1, + "rotationCenterX": 12, + "rotationCenterY": 32 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "candle1-b", + "baseLayerID": -1, + "baseLayerMD5": "4f2ab7fc559ecbbc61721f76639a4e44.svg", + "bitmapResolution": 1, + "rotationCenterX": 12, + "rotationCenterY": 32 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.75, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Candles1", + "md5": "b8432a2c0d04408b3ba58ec3b01582f0.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Candles1", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "strum", + "soundID": -1, + "md5": "b92de59d992a655c1b542223a784cda6.wav", + "sampleCount": 11247, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "I-glow", + "costumeName": "candles1", "baseLayerID": -1, - "baseLayerMD5": "0e86de55840103dcd50199ab2b765de7.svg", + "baseLayerMD5": "b8432a2c0d04408b3ba58ec3b01582f0.svg", "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 38 + "rotationCenterX": 52, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -5320,11 +2831,12 @@ } }, { - "name": "J-Glow", - "md5": "b3832145eacc39f91bd3a9a6673fa05c.svg", + "name": "Candles2", + "md5": "76a9de5efb140fe287dc0f197a0e8d4c.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], @@ -5334,129 +2846,25 @@ 1 ], "json": { - "objName": "J-Glow", + "objName": "Candles2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "strum", + "soundID": -1, + "md5": "b92de59d992a655c1b542223a784cda6.wav", + "sampleCount": 11247, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "J-glow", + "costumeName": "candles2", "baseLayerID": -1, - "baseLayerMD5": "b3832145eacc39f91bd3a9a6673fa05c.svg", + "baseLayerMD5": "76a9de5efb140fe287dc0f197a0e8d4c.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 + "rotationCenterX": 52, + "rotationCenterY": 79 } ], "currentCostumeIndex": 0, @@ -5472,13 +2880,14 @@ } }, { - "name": "K-Glow", - "md5": "f4e37a7552ba05e995613211a7146de5.svg", + "name": "Car-Bug", + "md5": "c0b7d099a815f58ff6d92538856f08c1.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "transportation", + "city", + "photo", + "bitmap" ], "info": [ 0, @@ -5486,129 +2895,24 @@ 1 ], "json": { - "objName": "K-Glow", + "objName": "Car-Bug", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "K-glow", + "costumeName": "car-bug", "baseLayerID": -1, - "baseLayerMD5": "f4e37a7552ba05e995613211a7146de5.svg", - "bitmapResolution": 1, - "rotationCenterX": 38, - "rotationCenterY": 36 + "baseLayerMD5": "c0b7d099a815f58ff6d92538856f08c1.png", + "rotationCenterX": 100, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -5624,143 +2928,60 @@ } }, { - "name": "L-Glow", - "md5": "a75e45773ea6afaf8ae44f79f936fc82.svg", + "name": "Cassy", + "md5": "db4e1ee1f9102e3da5e06f2d17881df5.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "L-Glow", + "objName": "Cassy", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "cassy-a", + "baseLayerID": -1, + "baseLayerMD5": "db4e1ee1f9102e3da5e06f2d17881df5.png", + "rotationCenterX": 43, + "rotationCenterY": 100 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "cassy-b", + "baseLayerID": -1, + "baseLayerMD5": "2f6f57d1ab69fc18a38fd30572530437.png", + "rotationCenterX": 35, + "rotationCenterY": 100 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "cassy-c", + "baseLayerID": -1, + "baseLayerMD5": "662752d56bb77544f3e79ee8c16b3f2d.png", + "rotationCenterX": 70, + "rotationCenterY": 58 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "L-glow", + "costumeName": "cassy-d", "baseLayerID": -1, - "baseLayerMD5": "a75e45773ea6afaf8ae44f79f936fc82.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 35 + "baseLayerMD5": "24e9dac390ae4e5b0c17e7d922eb033b.png", + "rotationCenterX": 72, + "rotationCenterY": 100 } ], "currentCostumeIndex": 0, @@ -5776,143 +2997,65 @@ } }, { - "name": "M-Glow", - "md5": "219b06faa5b816347165450d148213b4.svg", + "name": "Cassy Dance", + "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "M-Glow", + "objName": "Cassy Dance", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "cassy dance-a", + "baseLayerID": -1, + "baseLayerMD5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", + "bitmapResolution": 2, + "rotationCenterX": 104, + "rotationCenterY": 192 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "cassy dance-b", + "baseLayerID": -1, + "baseLayerMD5": "086dc4312d3bf4595d6b3fd4b1021b35.png", + "bitmapResolution": 2, + "rotationCenterX": 140, + "rotationCenterY": 192 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "cassy dance-c", + "baseLayerID": -1, + "baseLayerMD5": "dffbfb382641655dbd698559ed49fd99.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 188 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "M-glow", + "costumeName": "cassy dance-d", "baseLayerID": -1, - "baseLayerMD5": "219b06faa5b816347165450d148213b4.svg", - "bitmapResolution": 1, - "rotationCenterX": 42, - "rotationCenterY": 39 + "baseLayerMD5": "d0e98431c4744f684a13e8331d838203.png", + "bitmapResolution": 2, + "rotationCenterX": 94, + "rotationCenterY": 180 } ], "currentCostumeIndex": 0, @@ -5928,143 +3071,47 @@ } }, { - "name": "N-Glow", - "md5": "4b724479fb3b2184fd8be6f83fb20e54.svg", + "name": "Cat1", + "md5": "f88bf1935daea28f8ca098462a31dbb0.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "N-Glow", + "objName": "Cat1", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "N-glow", + "costumeName": "cat1-a", "baseLayerID": -1, - "baseLayerMD5": "4b724479fb3b2184fd8be6f83fb20e54.svg", + "baseLayerMD5": "f88bf1935daea28f8ca098462a31dbb0.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 39 + "rotationCenterX": 47, + "rotationCenterY": 50 + }, + { + "costumeName": "cat1-b", + "baseLayerID": -1, + "baseLayerMD5": "6e8bd9ae68fdb02b7e1e3df656a75635.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 } ], "currentCostumeIndex": 0, @@ -6080,143 +3127,48 @@ } }, { - "name": "O-Glow", - "md5": "38b2b342659adc6fa289090975e0e71d.svg", + "name": "Cat1 Flying", + "md5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "flying", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "O-Glow", + "objName": "Cat1 Flying", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "O-glow", + "costumeName": "cat1 flying-a", "baseLayerID": -1, - "baseLayerMD5": "38b2b342659adc6fa289090975e0e71d.svg", + "baseLayerMD5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 + "rotationCenterX": 67, + "rotationCenterY": 48 + }, + { + "costumeName": "cat1 flying-b", + "baseLayerID": -1, + "baseLayerMD5": "0d192725870ef0eda50d91cab0e3c9c5.svg", + "bitmapResolution": 1, + "rotationCenterX": 42, + "rotationCenterY": 44 } ], "currentCostumeIndex": 0, @@ -6232,11 +3184,11 @@ } }, { - "name": "P-Glow", - "md5": "1cfa849cc967069730b7e9d0809c9dc1.svg", + "name": "Cat2", + "md5": "01ae57fd339529445cb890978ef8a054.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -6246,129 +3198,99 @@ 1 ], "json": { - "objName": "P-Glow", + "objName": "Cat2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, + "soundName": "meow2", + "soundID": -1, + "md5": "cf51a0c4088942d95bcc20af13202710.wav", + "sampleCount": 6512, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ + { + "costumeName": "cat2", + "baseLayerID": -1, + "baseLayerMD5": "01ae57fd339529445cb890978ef8a054.svg", + "bitmapResolution": 1, + "rotationCenterX": 87, + "rotationCenterY": 39 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Catherine Dance", + "md5": "7f7684029e9726376aaaae1158439f3e.png", + "type": "sprite", + "tags": [ + "people", + "dance", + "city", + "photo", + "bitmap" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Catherine Dance", + "sounds": [ { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "catherine-a", + "baseLayerID": -1, + "baseLayerMD5": "7f7684029e9726376aaaae1158439f3e.png", + "bitmapResolution": 2, + "rotationCenterX": 84, + "rotationCenterY": 123 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "catherine-b", + "baseLayerID": -1, + "baseLayerMD5": "79052da8d59a6a16a0f6d09cd94237ae.png", + "bitmapResolution": 2, + "rotationCenterX": 179, + "rotationCenterY": 133 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "catherine-c", + "baseLayerID": -1, + "baseLayerMD5": "6e34f695da1e18d53e6c050d95ba0e4a.png", + "bitmapResolution": 2, + "rotationCenterX": 103, + "rotationCenterY": 28 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "P-glow", + "costumeName": "catherine-d", "baseLayerID": -1, - "baseLayerMD5": "1cfa849cc967069730b7e9d0809c9dc1.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 39 + "baseLayerMD5": "feff7824a6fd6747391012dcfe9ac4f0.png", + "bitmapResolution": 2, + "rotationCenterX": 121, + "rotationCenterY": 113 } ], "currentCostumeIndex": 0, @@ -6384,143 +3306,137 @@ } }, { - "name": "Q-Glow", - "md5": "9d35979e9404ac234301269fcd7de288.svg", + "name": "Champ99", + "md5": "b940c99d8e677ac5773cb4d592b16734.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 7, 1 ], "json": { - "objName": "Q-Glow", + "objName": "Champ99", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "champ99-a", + "baseLayerID": -1, + "baseLayerMD5": "b940c99d8e677ac5773cb4d592b16734.png", + "bitmapResolution": 2, + "rotationCenterX": 248, + "rotationCenterY": 306 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "champ99-b", + "baseLayerID": -1, + "baseLayerMD5": "2ebc7632bc9e665d9eeea93190fad7ad.png", + "bitmapResolution": 2, + "rotationCenterX": 164, + "rotationCenterY": 290 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "champ99-c", + "baseLayerID": -1, + "baseLayerMD5": "bfcff80b0044c644c555ba24f2484106.png", + "bitmapResolution": 2, + "rotationCenterX": 152, + "rotationCenterY": 270 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "champ99-d", + "baseLayerID": -1, + "baseLayerMD5": "34de53e52a768d60a96e3ae0c030dfc5.png", + "bitmapResolution": 2, + "rotationCenterX": 188, + "rotationCenterY": 260 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "champ99-e", + "baseLayerID": -1, + "baseLayerMD5": "0cb685bf8584df9caf124da929ab3453.png", + "bitmapResolution": 2, + "rotationCenterX": 190, + "rotationCenterY": 248 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "champ99-f", + "baseLayerID": -1, + "baseLayerMD5": "516d30b29aed8145718db421f4737953.png", + "bitmapResolution": 2, + "rotationCenterX": 114, + "rotationCenterY": 250 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "champ99-g", + "baseLayerID": -1, + "baseLayerMD5": "49e0edcb319527d936981f06b4111d53.png", + "bitmapResolution": 2, + "rotationCenterX": 132, + "rotationCenterY": 258 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Cheesy-Puffs", + "md5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", + "type": "sprite", + "tags": [ + "things", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Cheesy-Puffs", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Q-glow", + "costumeName": "cheesy-puffs", "baseLayerID": -1, - "baseLayerMD5": "9d35979e9404ac234301269fcd7de288.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 43 + "baseLayerMD5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", + "bitmapResolution": 2, + "rotationCenterX": 87, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -6536,11 +3452,13 @@ } }, { - "name": "R-Glow", - "md5": "fc067ee076ecaba8430ccd54d9414c1b.svg", + "name": "Cloud", + "md5": "47005a1f20309f577a03a67abbb6b94e.svg", "type": "sprite", "tags": [ - "letters", + "flying", + "city", + "things", "drawing", "vector" ], @@ -6550,135 +3468,31 @@ 1 ], "json": { - "objName": "R-Glow", + "objName": "Cloud", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "ripples", + "soundID": -1, + "md5": "4da8a805673c288965e1e5535c3f7f2b.wav", + "sampleCount": 10144, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "R-glow", + "costumeName": "cloud", "baseLayerID": -1, - "baseLayerMD5": "fc067ee076ecaba8430ccd54d9414c1b.svg", + "baseLayerMD5": "47005a1f20309f577a03a67abbb6b94e.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 38 + "rotationCenterX": 71, + "rotationCenterY": 45 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -6688,143 +3502,171 @@ } }, { - "name": "S-Glow", - "md5": "19a93db8a294ccaec4d6eef4020a446f.svg", + "name": "Clouds", + "md5": "c7d7de8e29179407f03b054fa640f4d0.svg", "type": "sprite", "tags": [ - "letters", + "flying", + "city", + "things", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "S-Glow", + "objName": "Clouds", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "cloud-a", + "baseLayerID": -1, + "baseLayerMD5": "c7d7de8e29179407f03b054fa640f4d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 76, + "rotationCenterY": 19 }, { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "cloud-b", + "baseLayerID": -1, + "baseLayerMD5": "d8595350ebb460494c9189dabb968336.svg", + "bitmapResolution": 1, + "rotationCenterX": 101, + "rotationCenterY": 20 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "cloud-c", + "baseLayerID": -1, + "baseLayerMD5": "395fc991e64ac0a4aa46758ab4bc65cb.svg", + "bitmapResolution": 1, + "rotationCenterX": 97, + "rotationCenterY": 9 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, + "costumeName": "cloud-d", + "baseLayerID": -1, + "baseLayerMD5": "1767e704acb11ffa409f77cc79ba7e86.svg", + "bitmapResolution": 1, + "rotationCenterX": 87, + "rotationCenterY": 21 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "CM Hip-Hop", + "md5": "db291ec7e061ecd4d797875e3aec0a09.png", + "type": "sprite", + "tags": [ + "people", + "dance", + "city", + "photo", + "bitmap" + ], + "info": [ + 0, + 8, + 1 + ], + "json": { + "objName": "CM Hip-Hop", + "sounds": [ { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "dance snare beat", + "soundID": -1, + "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", + "sampleCount": 176401, "rate": 22050, - "format": "" - }, + "format": "adpcm" + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "cm top stand", + "baseLayerID": -1, + "baseLayerMD5": "db291ec7e061ecd4d797875e3aec0a09.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 226 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "cm top R leg", + "baseLayerID": -1, + "baseLayerMD5": "b5cfa26a969dc001fb38d29c5ef8f1bf.png", + "bitmapResolution": 2, + "rotationCenterX": 90, + "rotationCenterY": 240 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "cm top L leg", + "baseLayerID": -1, + "baseLayerMD5": "9b3224263e7c828c54326d9b4f22a74b.png", + "bitmapResolution": 2, + "rotationCenterX": 116, + "rotationCenterY": 238 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "cm top ready", + "baseLayerID": -1, + "baseLayerMD5": "ab97d9c6e3c0efe27bfd9e44ac3af497.png", + "bitmapResolution": 2, + "rotationCenterX": 84, + "rotationCenterY": 180 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "cm top L cross", + "baseLayerID": -1, + "baseLayerMD5": "3b0538ba8b6fcc0f938013b912e34305.png", + "bitmapResolution": 2, + "rotationCenterX": 122, + "rotationCenterY": 162 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "cm top R cross", + "baseLayerID": -1, + "baseLayerMD5": "00716f8ab864ae479db3017146d28c64.png", + "bitmapResolution": 2, + "rotationCenterX": 156, + "rotationCenterY": 164 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ + "costumeName": "cm pop L arm", + "baseLayerID": -1, + "baseLayerMD5": "ce0928c8dbc625661b44c3503debae7e.png", + "bitmapResolution": 2, + "rotationCenterX": 136, + "rotationCenterY": 243 + }, { - "costumeName": "S-glow", + "costumeName": "cm pop R arm", "baseLayerID": -1, - "baseLayerMD5": "19a93db8a294ccaec4d6eef4020a446f.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 40 + "baseLayerMD5": "e5555af183c643c7006632b26d851a32.png", + "bitmapResolution": 2, + "rotationCenterX": 79, + "rotationCenterY": 229 } ], "currentCostumeIndex": 0, @@ -6840,13 +3682,14 @@ } }, { - "name": "T-Glow", - "md5": "d7bcda522a1e9504dafcf2fa0fcde39b.svg", + "name": "Convertible1", + "md5": "099953d710d842e592084765c17bda82.png", "type": "sprite", "tags": [ - "letters", + "transportation", + "city", "drawing", - "vector" + "bitmap" ], "info": [ 0, @@ -6854,129 +3697,24 @@ 1 ], "json": { - "objName": "T-Glow", + "objName": "Convertible1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "T-glow", + "costumeName": "convertible1", "baseLayerID": -1, - "baseLayerMD5": "d7bcda522a1e9504dafcf2fa0fcde39b.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 38 + "baseLayerMD5": "099953d710d842e592084765c17bda82.png", + "rotationCenterX": 110, + "rotationCenterY": 27 } ], "currentCostumeIndex": 0, @@ -6992,13 +3730,14 @@ } }, { - "name": "U-Glow", - "md5": "790482a3c3691a1e96ef34eee7303872.svg", + "name": "Convertible2", + "md5": "2091f1f3fc578189bced6b257f353995.png", "type": "sprite", "tags": [ - "letters", + "transportation", + "city", "drawing", - "vector" + "bitmap" ], "info": [ 0, @@ -7006,129 +3745,73 @@ 1 ], "json": { - "objName": "U-Glow", + "objName": "Convertible2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "convertible2", + "baseLayerID": -1, + "baseLayerMD5": "2091f1f3fc578189bced6b257f353995.png", + "rotationCenterX": 90, + "rotationCenterY": 22 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Convertible3", + "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "type": "sprite", + "tags": [ + "transportation", + "city", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Convertible3", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "U-glow", + "costumeName": "convertible3", "baseLayerID": -1, - "baseLayerMD5": "790482a3c3691a1e96ef34eee7303872.svg", + "baseLayerMD5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 37 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -7144,143 +3827,48 @@ } }, { - "name": "V-Glow", - "md5": "6a00388d8dc6be645b843cef9c22681c.svg", + "name": "Cowbell", + "md5": "3b00920b17d43986685f3855bcb6afe7.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, 1, - 1 + 2 ], "json": { - "objName": "V-Glow", + "objName": "Cowbell", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "small cowbell", + "soundID": -1, + "md5": "e29154f53f56f96f8a3292bdcddcec54.wav", + "sampleCount": 9718, "rate": 22050, "format": "adpcm" }, { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "large cowbell", + "soundID": -1, + "md5": "006316650ffc673dc02d36aa55881327.wav", + "sampleCount": 20856, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "V-glow", + "costumeName": "cowbell", "baseLayerID": -1, - "baseLayerMD5": "6a00388d8dc6be645b843cef9c22681c.svg", + "baseLayerMD5": "3b00920b17d43986685f3855bcb6afe7.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 42 + "rotationCenterX": 29, + "rotationCenterY": 30 } ], "currentCostumeIndex": 0, @@ -7296,143 +3884,46 @@ } }, { - "name": "W-Glow", - "md5": "1a9ea7305a85b271c1de79beafe16cb4.svg", + "name": "Crab", + "md5": "114249a5660f7948663d95de575cfd8d.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "underwater", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "W-Glow", + "objName": "Crab", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "W-glow", + "costumeName": "crab-a", "baseLayerID": -1, - "baseLayerMD5": "1a9ea7305a85b271c1de79beafe16cb4.svg", - "bitmapResolution": 1, - "rotationCenterX": 45, - "rotationCenterY": 41 + "baseLayerMD5": "114249a5660f7948663d95de575cfd8d.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "crab-b", + "baseLayerID": -1, + "baseLayerMD5": "9bf050664e68c10d2616e85f2873be09.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -7448,143 +3939,145 @@ } }, { - "name": "X-Glow", - "md5": "ec4e65b9ae475a676973128f4205df5f.svg", + "name": "Creature1", + "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "X-Glow", + "objName": "Creature1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "creature1-a", + "baseLayerID": -1, + "baseLayerMD5": "a560c6eab2e1de2462bdaeb1d698736c.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 80 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "creature1-b", + "baseLayerID": -1, + "baseLayerMD5": "8042b71fc2ae322151c0a3a163701333.svg", + "bitmapResolution": 1, + "rotationCenterX": 60, + "rotationCenterY": 78 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + "costumeName": "creature1-c", + "baseLayerID": -1, + "baseLayerMD5": "e12a83c8f1c0545b59fe8673e9fac79c.svg", + "bitmapResolution": 1, + "rotationCenterX": 63, + "rotationCenterY": 164 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Cymbal", + "md5": "532860ee3ecfd05d5f473dbe3ea69c8e.svg", + "type": "sprite", + "tags": [ + "things", + "music", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 5 + ], + "json": { + "objName": "Cymbal", + "sounds": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "crash cymbal", + "soundID": -1, + "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav", + "sampleCount": 25220, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "hihat cymbal", + "soundID": -1, + "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav", + "sampleCount": 2752, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "splash cymbal", + "soundID": -1, + "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav", + "sampleCount": 9600, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "roll cymbal", + "soundID": -1, + "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav", + "sampleCount": 26432, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "bell cymbal", + "soundID": -1, + "md5": "efddec047de95492f775a1b5b2e8d19e.wav", + "sampleCount": 19328, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "X-glow", + "costumeName": "cymbal-a", "baseLayerID": -1, - "baseLayerMD5": "ec4e65b9ae475a676973128f4205df5f.svg", + "baseLayerMD5": "532860ee3ecfd05d5f473dbe3ea69c8e.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 39 + "rotationCenterX": 34, + "rotationCenterY": 60 + }, + { + "costumeName": "cymbal-b", + "baseLayerID": -1, + "baseLayerMD5": "ae5b19022fa882ff95790b25279b9a3f.svg", + "bitmapResolution": 1, + "rotationCenterX": 37, + "rotationCenterY": 73 } ], "currentCostumeIndex": 0, @@ -7600,143 +4093,137 @@ } }, { - "name": "Y-Glow", - "md5": "683cd093bb3b254733a15df6f843464c.svg", + "name": "D-Money Hip-Hop", + "md5": "b30a60d31aebead577b73affd22bf30f.svg", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 13, 1 ], "json": { - "objName": "Y-Glow", + "objName": "D-Money Hip-Hop", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance celebrate", + "soundID": -1, + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" + "costumeName": "dm stance", + "baseLayerID": -1, + "baseLayerMD5": "b30a60d31aebead577b73affd22bf30f.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 119 }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "dm top stand", + "baseLayerID": -1, + "baseLayerMD5": "cbf035d39d0a0bb070d2eb998cebd60d.png", + "bitmapResolution": 2, + "rotationCenterX": 82, + "rotationCenterY": 244 }, { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "dm top R leg", + "baseLayerID": -1, + "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", + "bitmapResolution": 2, + "rotationCenterX": 218, + "rotationCenterY": 232 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "dm top L leg", + "baseLayerID": -1, + "baseLayerMD5": "fd8bb9665fe078d2d95dbc35bccf4046.png", + "bitmapResolution": 2, + "rotationCenterX": 230, + "rotationCenterY": 240 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "dm freeze", + "baseLayerID": -1, + "baseLayerMD5": "31e687f186b19ea120cd5cfc9dea2a3f.png", + "bitmapResolution": 2, + "rotationCenterX": 220, + "rotationCenterY": 234 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "dm pop front", + "baseLayerID": -1, + "baseLayerMD5": "0b2fb609d6d10decfdd5a1c3b58369b4.png", + "bitmapResolution": 2, + "rotationCenterX": 92, + "rotationCenterY": 234 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "dm pop down", + "baseLayerID": -1, + "baseLayerMD5": "3b65ce3551f9c111794f7f1fb8f325be.png", + "bitmapResolution": 2, + "rotationCenterX": 64, + "rotationCenterY": 74 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "dm pop left", + "baseLayerID": -1, + "baseLayerMD5": "f636510e8ef231d7c0e72a572ce91c99.png", + "bitmapResolution": 2, + "rotationCenterX": 204, + "rotationCenterY": 250 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "dm pop right", + "baseLayerID": -1, + "baseLayerMD5": "36b32430e45e071071052ef33c637f48.png", + "bitmapResolution": 2, + "rotationCenterX": 78, + "rotationCenterY": 238 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "dm pop L arm", + "baseLayerID": -1, + "baseLayerMD5": "426e1520efc34fef45be0596fd5f7120.png", + "bitmapResolution": 2, + "rotationCenterX": 90, + "rotationCenterY": 238 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "dm pop stand", + "baseLayerID": -1, + "baseLayerMD5": "370cc57b40f1f1d6e52d6330b73d207f.png", + "bitmapResolution": 2, + "rotationCenterX": 100, + "rotationCenterY": 244 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "dm pop R arm", + "baseLayerID": -1, + "baseLayerMD5": "56fe91d2cf3ecb9d1b94006aee9eff79.png", + "bitmapResolution": 2, + "rotationCenterX": 80, + "rotationCenterY": 240 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Y-glow", + "costumeName": "dm top R leg2", "baseLayerID": -1, - "baseLayerMD5": "683cd093bb3b254733a15df6f843464c.svg", - "bitmapResolution": 1, - "rotationCenterX": 38, - "rotationCenterY": 41 + "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", + "bitmapResolution": 2, + "rotationCenterX": 218, + "rotationCenterY": 232 } ], "currentCostumeIndex": 0, @@ -7752,143 +4239,111 @@ } }, { - "name": "Z-Glow", - "md5": "db89a4c9b123123542e0b7556ed3ff9f.svg", + "name": "Dan", + "md5": "1baa5b126e0e14d6070a997c0deefab5.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "city", + "photo", + "bitmap" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Z-Glow", + "objName": "Dan", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "dan-a", + "baseLayerID": -1, + "baseLayerMD5": "1baa5b126e0e14d6070a997c0deefab5.png", + "rotationCenterX": 36, + "rotationCenterY": 100 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "dan-b", + "baseLayerID": -1, + "baseLayerMD5": "74be10ac815fd090cb42b92801002bb1.png", + "rotationCenterX": 47, + "rotationCenterY": 100 + } + ], + "currentCostumeIndex": 1, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dani", + "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg", + "type": "sprite", + "tags": [ + "dress-up", + "people", + "drawing", + "vector" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Dani", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "dani-a", + "baseLayerID": -1, + "baseLayerMD5": "f3038fb0f4a00806b02081c6789dd8cf.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 115 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "dani-b", + "baseLayerID": -1, + "baseLayerMD5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 115 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Z-glow", + "costumeName": "dani-c", "baseLayerID": -1, - "baseLayerMD5": "db89a4c9b123123542e0b7556ed3ff9f.svg", + "baseLayerMD5": "cbc5f9c67022af201d498bc9b35608b8.svg", "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 39 + "rotationCenterX": 49, + "rotationCenterY": 113 } ], "currentCostumeIndex": 0, @@ -7904,143 +4359,72 @@ } }, { - "name": "0-Glow", - "md5": "38b2b342659adc6fa289090975e0e71d.svg", + "name": "Dee", + "md5": "aa239b7ccdce6bddf06900c709525764.svg", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 1, + 5, 1 ], "json": { - "objName": "0-Glow", + "objName": "Dee", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "dee-a", + "baseLayerID": -1, + "baseLayerMD5": "aa239b7ccdce6bddf06900c709525764.svg", + "bitmapResolution": 1, + "rotationCenterX": 52, + "rotationCenterY": 99 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "dee-b", + "baseLayerID": -1, + "baseLayerMD5": "62b4ac1b735599e21af77c390b178095.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 99 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "dee-c", + "baseLayerID": -1, + "baseLayerMD5": "6aa6196ce3245e93b8d1299f33adffcd.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 102 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "dee-d", + "baseLayerID": -1, + "baseLayerMD5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 99 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "0-glow", + "costumeName": "dee-e", "baseLayerID": -1, - "baseLayerMD5": "38b2b342659adc6fa289090975e0e71d.svg", + "baseLayerMD5": "e358d2a7e3a0a680928657161ce81a0a.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 + "rotationCenterX": 32, + "rotationCenterY": 99 } ], "currentCostumeIndex": 0, @@ -8056,143 +4440,64 @@ } }, { - "name": "1-Glow", - "md5": "2c88706210672655401fe09edd8ff6a7.svg", + "name": "Devin", + "md5": "b1897e56265470b55fa65fabe2423c55.svg", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "1-Glow", + "objName": "Devin", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "devin-a", + "baseLayerID": -1, + "baseLayerMD5": "b1897e56265470b55fa65fabe2423c55.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 95 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "devin-b", + "baseLayerID": -1, + "baseLayerMD5": "873fbd641768c8f753a6568da97633e7.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 96 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "devin-c", + "baseLayerID": -1, + "baseLayerMD5": "eac3c03d86cebb42c8f30e373cb7f623.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 95 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "1-glow", + "costumeName": "devin-d", "baseLayerID": -1, - "baseLayerMD5": "2c88706210672655401fe09edd8ff6a7.svg", + "baseLayerMD5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg", "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 39 + "rotationCenterX": 41, + "rotationCenterY": 95 } ], "currentCostumeIndex": 0, @@ -8208,143 +4513,136 @@ } }, { - "name": "2-Glow", - "md5": "b9faa5708a799a1607f0325a7af2561c.svg", + "name": "Dinosaur1", + "md5": "286094ffce382c8383519ab896711989.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 1, + 7, 1 ], "json": { - "objName": "2-Glow", + "objName": "Dinoaur1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "dinosaur1-a", + "baseLayerID": -1, + "baseLayerMD5": "286094ffce382c8383519ab896711989.svg", + "rotationCenterX": 75, + "rotationCenterY": 84 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "dinosaur1-b", + "baseLayerID": -1, + "baseLayerMD5": "d9eca17b8569f2cde20ef7d3ed0fe19f.svg", + "rotationCenterX": 116, + "rotationCenterY": 79 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "dinosaur1-c", + "baseLayerID": -1, + "baseLayerMD5": "ade3d2ec5029693ecdcca17974bad5fd.svg", + "rotationCenterX": 65, + "rotationCenterY": 89 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "dinosaur1-d", + "baseLayerID": -1, + "baseLayerMD5": "2aa7257a3e0a19ee315b23eaf7f56933.svg", + "rotationCenterX": 45, + "rotationCenterY": 87 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "dinosaur1-e", + "baseLayerID": -1, + "baseLayerMD5": "ed46ee11478715f7596d01fb0f98aa3f.svg", + "rotationCenterX": 82, + "rotationCenterY": 84 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "dinosaur1-f", + "baseLayerID": -1, + "baseLayerMD5": "39caf2473b1eee55edb688cfa3c240c7.svg", + "rotationCenterX": 69, + "rotationCenterY": 76 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "dinosaur1-g", + "baseLayerID": -1, + "baseLayerMD5": "f0f2aa4e8e015de497050d8d44bbfbf1.svg", + "rotationCenterX": 68, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dinosaur2", + "md5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Dinosaur2", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "2-glow", + "costumeName": "dinosaur2-a", "baseLayerID": -1, - "baseLayerMD5": "b9faa5708a799a1607f0325a7af2561c.svg", + "baseLayerMD5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 41 + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "dinosaur2-b", + "baseLayerID": -1, + "baseLayerMD5": "a01d31caaab3b14b9bb0e2cd5a86c70c.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 67 } ], "currentCostumeIndex": 0, @@ -8360,11 +4658,11 @@ } }, { - "name": "3-Glow", - "md5": "cf42a50552ce26032ead712ac4f36c23.svg", + "name": "Dinosaur3", + "md5": "79bb51bbf809b412147f2a196f8c9292.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -8374,129 +4672,24 @@ 1 ], "json": { - "objName": "3-Glow", + "objName": "Dinosaur3", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "3-glow", + "costumeName": "dinosaur3", "baseLayerID": -1, - "baseLayerMD5": "cf42a50552ce26032ead712ac4f36c23.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 42 + "baseLayerMD5": "79bb51bbf809b412147f2a196f8c9292.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -8512,11 +4705,12 @@ } }, { - "name": "4-Glow", - "md5": "3ffa6aee373e28fc36b9395ac4d0467e.svg", + "name": "Diver1", + "md5": "853803d5600b66538474909c5438c8ee.svg", "type": "sprite", "tags": [ - "letters", + "people", + "underwater", "drawing", "vector" ], @@ -8526,129 +4720,24 @@ 1 ], "json": { - "objName": "4-Glow", + "objName": "Diver1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "4-glow", + "costumeName": "diver1", "baseLayerID": -1, - "baseLayerMD5": "3ffa6aee373e28fc36b9395ac4d0467e.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 38 + "baseLayerMD5": "853803d5600b66538474909c5438c8ee.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -8664,11 +4753,12 @@ } }, { - "name": "5-Glow", - "md5": "85d87d32e7e9e6be122c905b0d2e7e33.svg", + "name": "Diver2", + "md5": "248d3e69ada69a64b1077149ef6a931a.svg", "type": "sprite", "tags": [ - "letters", + "people", + "underwater", "drawing", "vector" ], @@ -8678,129 +4768,81 @@ 1 ], "json": { - "objName": "5-Glow", + "objName": "Diver2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "diver2", + "baseLayerID": -1, + "baseLayerMD5": "248d3e69ada69a64b1077149ef6a931a.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dog1", + "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "walking", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Dog1", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "dog1", + "soundID": -1, + "md5": "b15adefc3c12f758b6dc6a045362532f.wav", + "sampleCount": 3672, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "5-glow", + "costumeName": "dog1-a", "baseLayerID": -1, - "baseLayerMD5": "85d87d32e7e9e6be122c905b0d2e7e33.svg", + "baseLayerMD5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 38 + "rotationCenterX": 83, + "rotationCenterY": 80 + }, + { + "costumeName": "dog1-b", + "baseLayerID": -1, + "baseLayerMD5": "598f4aa3d8f671375d1d2b3acf753416.svg", + "bitmapResolution": 1, + "rotationCenterX": 83, + "rotationCenterY": 80 } ], "currentCostumeIndex": 0, @@ -8816,143 +4858,128 @@ } }, { - "name": "6-Glow", - "md5": "62cc2a6def27f19d11ed56e86e95aac5.svg", + "name": "Dog2", + "md5": "e921f865b19b27cd99e16a341dbf09c2.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "walking", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "6-Glow", + "objName": "Dog2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dog1", + "soundID": -1, + "md5": "b15adefc3c12f758b6dc6a045362532f.wav", + "sampleCount": 3672, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "dog2-a", + "baseLayerID": -1, + "baseLayerMD5": "e921f865b19b27cd99e16a341dbf09c2.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "dog2-b", + "baseLayerID": -1, + "baseLayerMD5": "891f2fb7daf79ba8b224a9173eeb0a63.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, + "costumeName": "dog2-c", + "baseLayerID": -1, + "baseLayerMD5": "cd236d5eef4431dea82983ac9eec406b.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.75, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dog Puppy", + "md5": "fd6c2d1d10a163bc5b7458f7275750f0.png", + "type": "sprite", + "tags": [ + "animals", + "photo", + "bitmap" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Dog Puppy", + "sounds": [ { - "soundName": "woof", - "soundID": 6, + "soundName": "dog2", + "soundID": -1, "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", "sampleCount": 3168, "rate": 22050, "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "dog puppy right", + "baseLayerID": -1, + "baseLayerMD5": "fd6c2d1d10a163bc5b7458f7275750f0.png", + "bitmapResolution": 2, + "rotationCenterX": 107, + "rotationCenterY": 103 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "dog puppy sit", + "baseLayerID": -1, + "baseLayerMD5": "00b1589467f939b9c61f666bca2d25d1.png", + "bitmapResolution": 2, + "rotationCenterX": 87, + "rotationCenterY": 112 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "dog puppy side", + "baseLayerID": -1, + "baseLayerMD5": "63c3d6718943ecbf48f94b3b131ae8a4.png", + "bitmapResolution": 2, + "rotationCenterX": 104, + "rotationCenterY": 114 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "6-glow", + "costumeName": "dog puppy back", "baseLayerID": -1, - "baseLayerMD5": "62cc2a6def27f19d11ed56e86e95aac5.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 37 + "baseLayerMD5": "88559ad0334a8a51aca31035068682f6.png", + "bitmapResolution": 2, + "rotationCenterX": 234, + "rotationCenterY": 94 } ], "currentCostumeIndex": 0, @@ -8968,11 +4995,11 @@ } }, { - "name": "7-Glow", - "md5": "8887983eb4df2e62a2ed4770a1d98d60.svg", + "name": "Donut", + "md5": "9e7b4d153421dae04a24571d7e079e85.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -8982,129 +5009,25 @@ 1 ], "json": { - "objName": "7-Glow", + "objName": "Donut", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "7-glow", + "costumeName": "donut", "baseLayerID": -1, - "baseLayerMD5": "8887983eb4df2e62a2ed4770a1d98d60.svg", + "baseLayerMD5": "9e7b4d153421dae04a24571d7e079e85.svg", "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 42 + "rotationCenterX": 73, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, @@ -9120,143 +5043,48 @@ } }, { - "name": "8-Glow", - "md5": "4c42c4cb0c1e090d0f9570416d3c80c8.svg", + "name": "Dove1", + "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg", "type": "sprite", "tags": [ - "letters", + "animals", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "8-Glow", + "objName": "Dove1", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "dove1-a", + "baseLayerID": -1, + "baseLayerMD5": "6dde2b880ad6ddeaea2a53821befb86d.svg", + "bitmapResolution": 1, + "rotationCenterX": 86, + "rotationCenterY": 59 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "8-glow", + "costumeName": "dove1-b", "baseLayerID": -1, - "baseLayerMD5": "4c42c4cb0c1e090d0f9570416d3c80c8.svg", + "baseLayerMD5": "1c0bc118044d7f6033bc9cd1ef555590.svg", "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 37 + "rotationCenterX": 88, + "rotationCenterY": 57 } ], "currentCostumeIndex": 0, @@ -9272,143 +5100,170 @@ } }, { - "name": "9-Glow", - "md5": "7bcb7e2e48f5cb770c83d4267922fec0.svg", + "name": "Dove2", + "md5": "42251c2649a073052eb4261d644281bb.svg", "type": "sprite", "tags": [ - "letters", + "animals", + "holiday", + "flying", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "9-Glow", + "objName": "Dove2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "dove2-a", + "baseLayerID": -1, + "baseLayerMD5": "42251c2649a073052eb4261d644281bb.svg", + "bitmapResolution": 1, + "rotationCenterX": 99, + "rotationCenterY": 83 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + "costumeName": "dove2-b", + "baseLayerID": -1, + "baseLayerMD5": "469eb55a437364d831b80937c4ee1ab9.svg", + "bitmapResolution": 1, + "rotationCenterX": 100, + "rotationCenterY": 82 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Dragon", + "md5": "ee0082b436d6d5dc3de33047166e7bf2.svg", + "type": "sprite", + "tags": [ + "fantasy", + "drawing", + "flying", + "castle", + "vector" + ], + "info": [ + 0, + 2, + 0 + ], + "json": { + "objName": "Dragon", + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "dragon1-a", + "baseLayerID": -1, + "baseLayerMD5": "ee0082b436d6d5dc3de33047166e7bf2.svg", + "bitmapResolution": 1, + "rotationCenterX": 65, + "rotationCenterY": 60 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "dragon1-b", + "baseLayerID": -1, + "baseLayerMD5": "bb58ce36997fa205a86a085f202837fd.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 56 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Drum-Bass", + "md5": "3308e038214f5a4adc53076a9fee9021.svg", + "type": "sprite", + "tags": [ + "things", + "music", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 3 + ], + "json": { + "objName": "Drum-Bass", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "drum bass1", + "soundID": -1, + "md5": "48328c874353617451e4c7902cc82817.wav", + "sampleCount": 6528, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, + "soundName": "drum bass2", + "soundID": -1, + "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", + "sampleCount": 3791, "rate": 22050, "format": "adpcm" }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "drum bass3", + "soundID": -1, + "md5": "c21704337b16359ea631b5f8eb48f765.wav", + "sampleCount": 8576, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "9-glow", + "costumeName": "drum bass-a", "baseLayerID": -1, - "baseLayerMD5": "7bcb7e2e48f5cb770c83d4267922fec0.svg", + "baseLayerMD5": "3308e038214f5a4adc53076a9fee9021.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 36 + "rotationCenterX": 36, + "rotationCenterY": 46 + }, + { + "costumeName": "drum bass-b", + "baseLayerID": -1, + "baseLayerMD5": "5febb3df727fb6624946e807a665b866.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 46 } ], "currentCostumeIndex": 0, @@ -9424,143 +5279,72 @@ } }, { - "name": "A-Pixel", - "md5": "a54da6be420c9e8e7cb02e2a568f3442.svg", + "name": "Drum-Conga", + "md5": "b3da94523b6d3df2dd30602399599ab4.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, - 1, - 1 + 2, + 4 ], "json": { - "objName": "A-Pixel", + "objName": "Drum-Conga", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "high conga", + "soundID": -1, + "md5": "16144544de90e98a92a265d4fc3241ea.wav", + "sampleCount": 8192, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "low conga", + "soundID": -1, + "md5": "0b6f94487cd8a1cf0bb77e15966656c3.wav", + "sampleCount": 8384, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "muted conga", + "soundID": -1, + "md5": "1d4abbe3c9bfe198a88badb10762de75.wav", + "sampleCount": 4544, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "tap conga", + "soundID": -1, + "md5": "fd9a67157f57f9cc6fe3cdce38a6d4a8.wav", + "sampleCount": 6880, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "A-pixel", + "costumeName": "drums conga-a", "baseLayerID": -1, - "baseLayerMD5": "a54da6be420c9e8e7cb02e2a568f3442.svg", + "baseLayerMD5": "b3da94523b6d3df2dd30602399599ab4.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "rotationCenterX": 51, + "rotationCenterY": 51 + }, + { + "costumeName": "drums conga-b", + "baseLayerID": -1, + "baseLayerMD5": "d4398062ed6e09927ab52823255186d3.svg", + "bitmapResolution": 1, + "rotationCenterX": 52, + "rotationCenterY": 79 } ], "currentCostumeIndex": 0, @@ -9576,143 +5360,145 @@ } }, { - "name": "B-Pixel", - "md5": "e47682020873e276f550421f0d854523.svg", + "name": "Drum-Snare", + "md5": "868f700de73a35c4d6fa4c93507c348d.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, - 1, - 1 + 2, + 3 ], "json": { - "objName": "B-Pixel", + "objName": "Drum-Snare", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "tap snare", + "soundID": -1, + "md5": "d55b3954d72c6275917f375e49b502f3.wav", + "sampleCount": 3296, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, + "soundName": "sidestick snare", + "soundID": -1, + "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav", + "sampleCount": 2336, + "rate": 22050, "format": "" }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "flam snare", + "soundID": -1, + "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav", + "sampleCount": 4416, "rate": 22050, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "drum snare-a", + "baseLayerID": -1, + "baseLayerMD5": "868f700de73a35c4d6fa4c93507c348d.svg", + "bitmapResolution": 1, + "rotationCenterX": 51, + "rotationCenterY": 37 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "drum snare-b", + "baseLayerID": -1, + "baseLayerMD5": "93738cb485ef57cbd4b9bff386d0bba2.svg", + "bitmapResolution": 1, + "rotationCenterX": 57, + "rotationCenterY": 59 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Drum-Tabla", + "md5": "68ce53b53fcc68744584c28d20144c4f.svg", + "type": "sprite", + "tags": [ + "things", + "music", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 4 + ], + "json": { + "objName": "Drum-Tabla", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "hi na tabla", + "soundID": -1, + "md5": "35b42d98c43404a5b1b52fb232a62bd7.wav", + "sampleCount": 4096, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "hi tun tabla", + "soundID": -1, + "md5": "da734693dfa6a9a7eccdc7f9a0ca9840.wav", + "sampleCount": 18656, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "lo gliss tabla", + "soundID": -1, + "md5": "d7cd24689737569c93e7ea7344ba6b0e.wav", + "sampleCount": 7008, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "lo geh tabla", + "soundID": -1, + "md5": "9205359ab69d042ed3da8a160a651690.wav", + "sampleCount": 30784, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "B-pixel", + "costumeName": "tabla-a", "baseLayerID": -1, - "baseLayerMD5": "e47682020873e276f550421f0d854523.svg", + "baseLayerMD5": "68ce53b53fcc68744584c28d20144c4f.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 18 + "rotationCenterX": 75, + "rotationCenterY": 45 + }, + { + "costumeName": "tabla-b", + "baseLayerID": -1, + "baseLayerMD5": "01b6ffb8691d32be10fabc77ddfb55b0.svg", + "bitmapResolution": 1, + "rotationCenterX": 78, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, @@ -9728,143 +5514,121 @@ } }, { - "name": "C-Pixel", - "md5": "ee1958ffbae4e0fd836622ae183b55bd.svg", + "name": "Drum1", + "md5": "daad8bc865f55200844dbce476d2f1e9.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, - 1, - 1 + 2, + 2 ], "json": { - "objName": "C-Pixel", + "objName": "Drum1", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "high tom", + "soundID": -1, + "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", + "sampleCount": 12320, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "low tom", + "soundID": -1, + "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", + "sampleCount": 20000, "rate": 22050, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "drum1-a", + "baseLayerID": -1, + "baseLayerMD5": "daad8bc865f55200844dbce476d2f1e9.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 44 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + "costumeName": "drum1-b", + "baseLayerID": -1, + "baseLayerMD5": "8a2e9596b02ecdc195d76c1f34a48f76.svg", + "bitmapResolution": 1, + "rotationCenterX": 60, + "rotationCenterY": 61 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Drum2", + "md5": "68baa189ac7afb9426db1818aa88be8e.svg", + "type": "sprite", + "tags": [ + "things", + "music", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 2 + ], + "json": { + "objName": "Drum2", + "sounds": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "high tom", + "soundID": -1, + "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", + "sampleCount": 12320, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "low tom", + "soundID": -1, + "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", + "sampleCount": 20000, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "C-pixel", + "costumeName": "drum2-a", "baseLayerID": -1, - "baseLayerMD5": "ee1958ffbae4e0fd836622ae183b55bd.svg", + "baseLayerMD5": "68baa189ac7afb9426db1818aa88be8e.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 + "rotationCenterX": 47, + "rotationCenterY": 39 + }, + { + "costumeName": "drum2-b", + "baseLayerID": -1, + "baseLayerMD5": "4a58fe0f173104aab03aaccdd3ce5280.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 54 } ], "currentCostumeIndex": 0, @@ -9880,11 +5644,11 @@ } }, { - "name": "D-Pixel", - "md5": "d759df99f347d9b7d59e1f703e8e1438.svg", + "name": "Duck", + "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -9894,129 +5658,25 @@ 1 ], "json": { - "objName": "D-Pixel", + "objName": "Duck", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "duck", + "soundID": -1, + "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", + "sampleCount": 5792, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "D-pixel", + "costumeName": "duck", "baseLayerID": -1, - "baseLayerMD5": "d759df99f347d9b7d59e1f703e8e1438.svg", + "baseLayerMD5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 + "rotationCenterX": 61, + "rotationCenterY": 59 } ], "currentCostumeIndex": 0, @@ -10032,11 +5692,12 @@ } }, { - "name": "E-Pixel", - "md5": "059a64a90014dc69c510b562cdf94df7.svg", + "name": "Earth", + "md5": "814197522984a302972998b1a7f92d91.svg", "type": "sprite", "tags": [ - "letters", + "things", + "space", "drawing", "vector" ], @@ -10046,129 +5707,81 @@ 1 ], "json": { - "objName": "E-Pixel", + "objName": "Earth", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "earth", + "baseLayerID": -1, + "baseLayerMD5": "814197522984a302972998b1a7f92d91.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Elephant", + "md5": "b3515b3805938b0fae4e527aa0b4524e.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "nature", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Elephant", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "E-pixel", + "costumeName": "elephant-a ", "baseLayerID": -1, - "baseLayerMD5": "059a64a90014dc69c510b562cdf94df7.svg", + "baseLayerMD5": "b3515b3805938b0fae4e527aa0b4524e.svg", "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 19 + "rotationCenterX": 107, + "rotationCenterY": 33 + }, + { + "costumeName": "elephant-b ", + "baseLayerID": -1, + "baseLayerMD5": "bce91fa266220d3679a4c19c4e38b1f7.svg", + "bitmapResolution": 1, + "rotationCenterX": 95, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -10184,13 +5797,13 @@ } }, { - "name": "F-Pixel", - "md5": "ebbc6dc0f7d1a89b159aac3f76fe52f4.svg", + "name": "Fire hydrant", + "md5": "5542c53bb0ba87b39eba6ff743b8115c.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "things", + "photo", + "bitmap" ], "info": [ 0, @@ -10198,129 +5811,24 @@ 1 ], "json": { - "objName": "F-Pixel", + "objName": "Fire hydrant", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "F-pixel", + "costumeName": "fire hydrant", "baseLayerID": -1, - "baseLayerMD5": "ebbc6dc0f7d1a89b159aac3f76fe52f4.svg", - "bitmapResolution": 1, - "rotationCenterX": 10, - "rotationCenterY": 20 + "baseLayerMD5": "5542c53bb0ba87b39eba6ff743b8115c.png", + "rotationCenterX": 40, + "rotationCenterY": 83 } ], "currentCostumeIndex": 0, @@ -10336,12 +5844,13 @@ } }, { - "name": "G-Pixel", - "md5": "203dfa253635f0e52059e835c51fa6f8.svg", + "name": "Fish1", + "md5": "df78f8195f72372846d96dc70cb0ad95.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "underwater", "vector" ], "info": [ @@ -10350,129 +5859,25 @@ 1 ], "json": { - "objName": "G-Pixel", + "objName": "Fish1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "G-pixel", + "costumeName": "fish1", "baseLayerID": -1, - "baseLayerMD5": "203dfa253635f0e52059e835c51fa6f8.svg", + "baseLayerMD5": "df78f8195f72372846d96dc70cb0ad95.svg", "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 22 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -10488,12 +5893,13 @@ } }, { - "name": "H-Pixel", - "md5": "d9a94d9b9abc9e26eb91d22d197a1556.svg", + "name": "Fish2", + "md5": "f3dd9cb79cce497a90900241cf726367.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "underwater", "vector" ], "info": [ @@ -10502,129 +5908,25 @@ 1 ], "json": { - "objName": "H-Pixel", + "objName": "Fish2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "H-pixel", + "costumeName": "fish2", "baseLayerID": -1, - "baseLayerMD5": "d9a94d9b9abc9e26eb91d22d197a1556.svg", + "baseLayerMD5": "f3dd9cb79cce497a90900241cf726367.svg", "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 20 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -10640,12 +5942,13 @@ } }, { - "name": "I-Pixel", - "md5": "aeb851adc39da9582a379af1ed6d0efe.svg", + "name": "Fish3", + "md5": "aec949cefb15ddd1330f3b633734d4d3.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", + "underwater", "vector" ], "info": [ @@ -10654,129 +5957,25 @@ 1 ], "json": { - "objName": "I-Pixel", + "objName": "Fish3", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "I-pixel", + "costumeName": "fish3", "baseLayerID": -1, - "baseLayerMD5": "aeb851adc39da9582a379af1ed6d0efe.svg", + "baseLayerMD5": "aec949cefb15ddd1330f3b633734d4d3.svg", "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 21 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -10792,11 +5991,11 @@ } }, { - "name": "J-Pixel", - "md5": "c18906f764b2889a8fc0b3c16db28bf0.svg", + "name": "Flower Shape", + "md5": "7905272bf89ee61cd9d3680a67732815.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -10806,129 +6005,24 @@ 1 ], "json": { - "objName": "J-Pixel", + "objName": "Flower Shape", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "J-pixel", + "costumeName": "flower shape", "baseLayerID": -1, - "baseLayerMD5": "c18906f764b2889a8fc0b3c16db28bf0.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 + "baseLayerMD5": "7905272bf89ee61cd9d3680a67732815.svg", + "rotationCenterX": 39, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -10944,146 +6038,49 @@ } }, { - "name": "K-Pixel", - "md5": "4483633d2ae26987d0efe359aaf1357b.svg", + "name": "Football", + "md5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "sports", + "photo", + "bitmap" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "K-Pixel", + "objName": "Football", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "K-pixel", + "costumeName": "football running", "baseLayerID": -1, - "baseLayerMD5": "4483633d2ae26987d0efe359aaf1357b.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 + "baseLayerMD5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", + "rotationCenterX": 47, + "rotationCenterY": 100 + }, + { + "costumeName": "football standing", + "baseLayerID": -1, + "baseLayerMD5": "1f57154842f68aa55577edc90a6f2b32.png", + "rotationCenterX": 37, + "rotationCenterY": 100 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -11096,13 +6093,13 @@ } }, { - "name": "L-Pixel", - "md5": "0625b64705d62748c6105e969859fe0d.svg", + "name": "Fortune Cookie", + "md5": "d47f0be24acf78130af2e03572a3f9d3.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "things", + "photo", + "bitmap" ], "info": [ 0, @@ -11110,129 +6107,24 @@ 1 ], "json": { - "objName": "L-Pixel", + "objName": "Fortune Cookie", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "L-pixel", + "costumeName": "fortunecookie", "baseLayerID": -1, - "baseLayerMD5": "0625b64705d62748c6105e969859fe0d.svg", - "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 18 + "baseLayerMD5": "d47f0be24acf78130af2e03572a3f9d3.png", + "rotationCenterX": 30, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, @@ -11248,11 +6140,11 @@ } }, { - "name": "M-Pixel", - "md5": "46ccf731f158b9dda75f4e71a5bcd282.svg", + "name": "Fox", + "md5": "dd19959dc4d453813299f496124d50ff.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -11262,129 +6154,25 @@ 1 ], "json": { - "objName": "M-Pixel", + "objName": "Fox", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "M-pixel", + "costumeName": "fox", "baseLayerID": -1, - "baseLayerMD5": "46ccf731f158b9dda75f4e71a5bcd282.svg", + "baseLayerMD5": "dd19959dc4d453813299f496124d50ff.svg", "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 16 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -11400,11 +6188,11 @@ } }, { - "name": "N-Pixel", - "md5": "f9d3b49b5962ff4070fae186b8b71e39.svg", + "name": "Frog", + "md5": "285483a688eed2ff8010c65112f99c41.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -11414,129 +6202,24 @@ 1 ], "json": { - "objName": "N-Pixel", + "objName": "Frog", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "N-pixel", + "costumeName": "frog", "baseLayerID": -1, - "baseLayerMD5": "f9d3b49b5962ff4070fae186b8b71e39.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "baseLayerMD5": "285483a688eed2ff8010c65112f99c41.svg", + "rotationCenterX": 48, + "rotationCenterY": 30 } ], "currentCostumeIndex": 0, @@ -11552,13 +6235,13 @@ } }, { - "name": "O-Pixel", - "md5": "668b21968078f3b7b1a9ccd74407fa1e.svg", + "name": "Fruit Platter", + "md5": "c6e2f673debcff91de8e3749ddf674b9.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "things", + "photo", + "bitmap" ], "info": [ 0, @@ -11566,129 +6249,24 @@ 1 ], "json": { - "objName": "O-Pixel", + "objName": "Fruit Platter", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "O-pixel", + "costumeName": "fruit_platter", "baseLayerID": -1, - "baseLayerMD5": "668b21968078f3b7b1a9ccd74407fa1e.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 + "baseLayerMD5": "c6e2f673debcff91de8e3749ddf674b9.png", + "rotationCenterX": 75, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -11704,11 +6282,11 @@ } }, { - "name": "P-Pixel", - "md5": "02011265d2597175c7496da667265f4a.svg", + "name": "Fruit Salad", + "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -11718,129 +6296,24 @@ 1 ], "json": { - "objName": "P-Pixel", + "objName": "Fruit Salad", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "P-pixel", + "costumeName": "fruitsalad", "baseLayerID": -1, - "baseLayerMD5": "02011265d2597175c7496da667265f4a.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 + "baseLayerMD5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", + "rotationCenterX": 30, + "rotationCenterY": 22 } ], "currentCostumeIndex": 0, @@ -11856,12 +6329,13 @@ } }, { - "name": "Q-Pixel", - "md5": "8c77c87dd0ed2613873cff0795ffc701.svg", + "name": "Ghost1", + "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", "drawing", + "castle", "vector" ], "info": [ @@ -11870,129 +6344,24 @@ 1 ], "json": { - "objName": "Q-Pixel", + "objName": "Ghost1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Q-pixel", + "costumeName": "ghost1 ", "baseLayerID": -1, - "baseLayerMD5": "8c77c87dd0ed2613873cff0795ffc701.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 21 + "baseLayerMD5": "c88579c578f2d171de78612f2ff9c9d9.svg", + "rotationCenterX": 60, + "rotationCenterY": 63 } ], "currentCostumeIndex": 0, @@ -12008,143 +6377,152 @@ } }, { - "name": "R-Pixel", - "md5": "c94daea3bd1e8cec36e1aa4e0b1d3f2b.svg", + "name": "Ghost2", + "md5": "607be245da950af1a4e4d79acfda46e3.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", "drawing", + "castle", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "R-Pixel", + "objName": "Ghost2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "ghost2-a", + "baseLayerID": -1, + "baseLayerMD5": "607be245da950af1a4e4d79acfda46e3.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + "costumeName": "ghost2-b", + "baseLayerID": -1, + "baseLayerMD5": "b9e2ebbe17c617ac182abd8bc1627693.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Ghoul", + "md5": "70ef3e78079cf4a1c9abf32b5d982b71.svg", + "type": "sprite", + "tags": [ + "fantasy", + "drawing", + "castle", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Ghoul", + "sounds": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "ghoul-a", + "baseLayerID": -1, + "baseLayerMD5": "70ef3e78079cf4a1c9abf32b5d982b71.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "costumeName": "ghoul-b", + "baseLayerID": -1, + "baseLayerMD5": "6e962f1248f7a7201eb24d376d804093.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 } ], + "currentCostumeIndex": 1, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Gift", + "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 0 + ], + "json": { + "objName": "Gift", "costumes": [ { - "costumeName": "R-pixel", + "costumeName": "gift-a", "baseLayerID": -1, - "baseLayerMD5": "c94daea3bd1e8cec36e1aa4e0b1d3f2b.svg", + "baseLayerMD5": "abeae2217b3ce67b1ff761cd7a89274d.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 + "rotationCenterX": 33, + "rotationCenterY": 25 + }, + { + "costumeName": "gift-b", + "baseLayerID": -1, + "baseLayerMD5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 26 } ], "currentCostumeIndex": 0, @@ -12160,143 +6538,64 @@ } }, { - "name": "S-Pixel", - "md5": "2fedb1b52f4a4500938a3a52085344e6.svg", + "name": "Giga", + "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", + "space", "drawing", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "S-Pixel", + "objName": "Giga", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "giga-a", + "baseLayerID": -1, + "baseLayerMD5": "93cb048a1d199f92424b9c097fa5fa38.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 96 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "giga-b", + "baseLayerID": -1, + "baseLayerMD5": "528613711a7eae3a929025be04db081c.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 96 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "giga-c", + "baseLayerID": -1, + "baseLayerMD5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", + "bitmapResolution": 1, + "rotationCenterX": 73, + "rotationCenterY": 96 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "S-pixel", + "costumeName": "giga-d", "baseLayerID": -1, - "baseLayerMD5": "2fedb1b52f4a4500938a3a52085344e6.svg", + "baseLayerMD5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 20 + "rotationCenterX": 73, + "rotationCenterY": 96 } ], "currentCostumeIndex": 0, @@ -12312,149 +6611,123 @@ } }, { - "name": "T-Pixel", - "md5": "3f481b967f82014c7cf6dd14d438c32d.svg", + "name": "Giga walking", + "md5": "f76bc420011db2cdb2de378c1536f6da.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", + "space", "drawing", + "walking", "vector" ], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "T-Pixel", + "objName": "Giga walking", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + } + ], + "costumes": [ + { + "costumeName": "Giga walk1", + "baseLayerID": -1, + "baseLayerMD5": "f76bc420011db2cdb2de378c1536f6da.svg", + "rotationCenterX": 70, + "rotationCenterY": 107 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "Giga walk2", + "baseLayerID": -1, + "baseLayerMD5": "43b5874e8a54f93bd02727f0abf6905b.svg", + "rotationCenterX": 71, + "rotationCenterY": 107 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "Giga walk3", + "baseLayerID": -1, + "baseLayerMD5": "9aab3bbb375765391978be4f6d478ab3.svg", + "rotationCenterX": 71, + "rotationCenterY": 107 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, + "costumeName": "Giga walk4", + "baseLayerID": -1, + "baseLayerMD5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg", + "rotationCenterX": 73, + "rotationCenterY": 110 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Glass Water", + "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", + "type": "sprite", + "tags": [ + "things", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Glass Water", + "sounds": [ { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "water drop", + "soundID": -1, + "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", + "sampleCount": 8136, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "T-pixel", + "costumeName": "glass water-a", "baseLayerID": -1, - "baseLayerMD5": "3f481b967f82014c7cf6dd14d438c32d.svg", + "baseLayerMD5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 20 + "rotationCenterX": 39, + "rotationCenterY": 48 + }, + { + "costumeName": "glass water-b", + "baseLayerID": -1, + "baseLayerMD5": "bc07ce6a2004ac91ce704531a1c526e5.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.6, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -12464,11 +6737,12 @@ } }, { - "name": "U-Pixel", - "md5": "a207644e4adb613f410f80a7e123db60.svg", + "name": "Glasses", + "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -12478,129 +6752,124 @@ 1 ], "json": { - "objName": "U-Pixel", + "objName": "Glasses", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "glasses", + "baseLayerID": -1, + "baseLayerMD5": "5fcf716b53f223bc86b10ab0eca3e162.svg", + "bitmapResolution": 1, + "rotationCenterX": 16, + "rotationCenterY": 9 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": true, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Gobo", + "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "type": "sprite", + "tags": [ + "fantasy", + "drawing", + "vector" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Gobo", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "gobo-a", + "baseLayerID": -1, + "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "rotationCenterX": 47, + "rotationCenterY": 55 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "gobo-b", + "baseLayerID": -1, + "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg", + "rotationCenterX": 47, + "rotationCenterY": 55 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "costumeName": "gobo-c", + "baseLayerID": -1, + "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg", + "rotationCenterX": 47, + "rotationCenterY": 55 } ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Green Flag", + "md5": "173e20ac537d2c278ed621be3db3fc87.svg", + "type": "sprite", + "tags": [ + "things", + "vector", + "drawing" + ], + "info": [ + 0, + 1, + 0 + ], + "json": { + "objName": "Green Flag", "costumes": [ { - "costumeName": "U-pixel", + "costumeName": "green flag", "baseLayerID": -1, - "baseLayerMD5": "a207644e4adb613f410f80a7e123db60.svg", + "baseLayerMD5": "173e20ac537d2c278ed621be3db3fc87.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "rotationCenterX": 70, + "rotationCenterY": 30 } ], "currentCostumeIndex": 0, @@ -12616,143 +6885,96 @@ } }, { - "name": "V-Pixel", - "md5": "1bb20febe562fa291bea94be1e2d44ba.svg", + "name": "Guitar", + "md5": "dfa85e2a962b725ee53f61cea2edc1fb.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, 1, - 1 + 8 ], "json": { - "objName": "V-Pixel", + "objName": "Guitar", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "C guitar", + "soundID": -1, + "md5": "22baa07795a9a524614075cdea543793.wav", + "sampleCount": 44864, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, "format": "" }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "D guitar", + "soundID": -1, + "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav", + "sampleCount": 41120, "rate": 22050, "format": "" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "E guitar", + "soundID": -1, + "md5": "4b5d1da83e59bf35578324573c991666.wav", + "sampleCount": 38400, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "F guitar", + "soundID": -1, + "md5": "b51d086aeb1921ec405561df52ecbc50.wav", + "sampleCount": 36416, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "G guitar", + "soundID": -1, + "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav", + "sampleCount": 33600, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "A guitar", + "soundID": -1, + "md5": "ee753e87d212d4b2fb650ca660f1e839.wav", + "sampleCount": 31872, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "B guitar", + "soundID": -1, + "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav", + "sampleCount": 29504, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "C2 guitar", + "soundID": -1, + "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav", + "sampleCount": 27712, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "V-pixel", + "costumeName": "guitar", "baseLayerID": -1, - "baseLayerMD5": "1bb20febe562fa291bea94be1e2d44ba.svg", + "baseLayerMD5": "dfa85e2a962b725ee53f61cea2edc1fb.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 + "rotationCenterX": 37, + "rotationCenterY": 98 } ], "currentCostumeIndex": 0, @@ -12768,143 +6990,96 @@ } }, { - "name": "W-Pixel", - "md5": "34b628e8c84cc551a1fa740b85afb750.svg", + "name": "Guitar-Bass", + "md5": "83cf122ec4a291e2a17910f718b583a5.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, 1, - 1 + 8 ], "json": { - "objName": "W-Pixel", + "objName": "Guitar-Bass", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "C elec bass", + "soundID": -1, + "md5": "69eee3d038ea0f1c34ec9156a789236d.wav", + "sampleCount": 5216, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, + "soundName": "D elec bass", + "soundID": -1, + "md5": "67a6d1aa68233a2fa641aee88c7f051f.wav", + "sampleCount": 5568, + "rate": 22050, "format": "" }, { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "E elec bass", + "soundID": -1, + "md5": "0704b8ceabe54f1dcedda8c98f1119fd.wav", + "sampleCount": 5691, "rate": 22050, "format": "" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "F elec bass", + "soundID": -1, + "md5": "45eedb4ce62a9cbbd2207824b94a4641.wav", + "sampleCount": 5312, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "G elec bass", + "soundID": -1, + "md5": "97b187d72219b994a6ef6a5a6b09605c.wav", + "sampleCount": 5568, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "A elec bass", + "soundID": -1, + "md5": "5cb46ddd903fc2c9976ff881df9273c9.wav", + "sampleCount": 5920, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "B elec bass", + "soundID": -1, + "md5": "5a0701d0a914223b5288300ac94e90e4.wav", + "sampleCount": 6208, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "C2 elec bass", + "soundID": -1, + "md5": "56fc995b8860e713c5948ecd1c2ae572.wav", + "sampleCount": 5792, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "W-pixel", + "costumeName": "guitar bass", "baseLayerID": -1, - "baseLayerMD5": "34b628e8c84cc551a1fa740b85afb750.svg", + "baseLayerMD5": "83cf122ec4a291e2a17910f718b583a5.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 + "rotationCenterX": 53, + "rotationCenterY": 145 } ], "currentCostumeIndex": 0, @@ -12920,143 +7095,96 @@ } }, { - "name": "X-Pixel", - "md5": "4cc2d68ceb08176481e882ed39e4f5d5.svg", + "name": "Guitar-Electric", + "md5": "18d7b47368ba1ead0d1ca436b8369211.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, 1, - 1 + 8 ], "json": { - "objName": "X-Pixel", + "objName": "Guitar-Electric", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "C elec guitar", + "soundID": -1, + "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav", + "sampleCount": 44100, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, "format": "" }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "D elec guitar", + "soundID": -1, + "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "E elec guitar", + "soundID": -1, + "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "F elec guitar", + "soundID": -1, + "md5": "5eb00f15f21f734986aa45156d44478d.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "G elec guitar", + "soundID": -1, + "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "A elec guitar", + "soundID": -1, + "md5": "fa5f7fea601e9368dd68449d9a54c995.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "B elec guitar", + "soundID": -1, + "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "C2 elec guitar", + "soundID": -1, + "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav", + "sampleCount": 44100, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "X-pixel", + "costumeName": "guitar electric", "baseLayerID": -1, - "baseLayerMD5": "4cc2d68ceb08176481e882ed39e4f5d5.svg", + "baseLayerMD5": "18d7b47368ba1ead0d1ca436b8369211.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "rotationCenterX": 37, + "rotationCenterY": 114 } ], "currentCostumeIndex": 0, @@ -13072,143 +7200,57 @@ } }, { - "name": "Y-Pixel", - "md5": "e6c377982c023761796eaed1047169e6.svg", + "name": "Hannah", + "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", - "vector" + "bitmap", + "sports" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Y-Pixel", + "objName": "Hannah", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "hannah-a", + "baseLayerID": -1, + "baseLayerMD5": "b983d99560313e38b4b3cd36cbd5f0d1.png", + "bitmapResolution": 2, + "rotationCenterX": 138, + "rotationCenterY": 126 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "hannah-b", + "baseLayerID": -1, + "baseLayerMD5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png", + "bitmapResolution": 2, + "rotationCenterX": 48, + "rotationCenterY": 160 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Y-pixel", + "costumeName": "hannah-c", "baseLayerID": -1, - "baseLayerMD5": "e6c377982c023761796eaed1047169e6.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 18 + "baseLayerMD5": "5fdce07935156bbcf943793fa84e826c.png", + "bitmapResolution": 2, + "rotationCenterX": 170, + "rotationCenterY": 130 } ], "currentCostumeIndex": 0, @@ -13224,11 +7266,12 @@ } }, { - "name": "Z-Pixel", - "md5": "ecadc3a562c9aa963717fcdf07ec96b4.svg", + "name": "Hat", + "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -13238,129 +7281,25 @@ 1 ], "json": { - "objName": "Z-Pixel", + "objName": "Hat", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Z-pixel", + "costumeName": "Hat", "baseLayerID": -1, - "baseLayerMD5": "ecadc3a562c9aa963717fcdf07ec96b4.svg", + "baseLayerMD5": "b3beb1f52d371428d70b65a0c4c5c001.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 18 + "rotationCenterX": 52, + "rotationCenterY": 60 } ], "currentCostumeIndex": 0, @@ -13369,18 +7308,19 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "0-Pixel", - "md5": "cd1f984997b44de464bbf86fc073b280.svg", + "name": "Hat Beanie", + "md5": "3271da33e4108ed08a303c2244739fbf.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -13390,129 +7330,25 @@ 1 ], "json": { - "objName": "0-Pixel", + "objName": "Hat Beanie", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "0-pixel", + "costumeName": "hat beanie", "baseLayerID": -1, - "baseLayerMD5": "cd1f984997b44de464bbf86fc073b280.svg", + "baseLayerMD5": "3271da33e4108ed08a303c2244739fbf.svg", "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 18 + "rotationCenterX": 28, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -13521,18 +7357,19 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "1-Pixel", - "md5": "4ec3d6c4ef14112ed7c6ba6b9549da3b.svg", + "name": "Hat Party1", + "md5": "70a7f535d8857cf9175492415361c361.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -13542,129 +7379,25 @@ 1 ], "json": { - "objName": "1-Pixel", + "objName": "Hat Party1", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "1-pixel", + "costumeName": "partyhat1", "baseLayerID": -1, - "baseLayerMD5": "4ec3d6c4ef14112ed7c6ba6b9549da3b.svg", + "baseLayerMD5": "70a7f535d8857cf9175492415361c361.svg", "bitmapResolution": 1, - "rotationCenterX": 7, - "rotationCenterY": 20 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -13680,11 +7413,12 @@ } }, { - "name": "2-Pixel", - "md5": "d0136e77a646a3ad719aaa7f8f95a7ff.svg", + "name": "Hat Party2", + "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -13694,129 +7428,25 @@ 1 ], "json": { - "objName": "2-Pixel", + "objName": "Hat Party2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "2-pixel", + "costumeName": "hat party2-a", "baseLayerID": -1, - "baseLayerMD5": "d0136e77a646a3ad719aaa7f8f95a7ff.svg", + "baseLayerMD5": "9b7a84fe3e50621752917e4e484a1e2f.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 17 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -13832,149 +7462,54 @@ } }, { - "name": "3-Pixel", - "md5": "7c1700f0dcfb418662d29ba6faa114e7.svg", + "name": "Hat Winter", + "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], "info": [ 0, 1, - 1 + 2 ], "json": { - "objName": "3-Pixel", + "objName": "Hat Winter", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "xylo3", + "soundID": -1, + "md5": "3395cade6d7c0cc9ce73a8c12f40319b.wav", + "sampleCount": 209502, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "3-pixel", + "costumeName": "hat winter", "baseLayerID": -1, - "baseLayerMD5": "7c1700f0dcfb418662d29ba6faa114e7.svg", + "baseLayerMD5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 18 + "rotationCenterX": 26, + "rotationCenterY": 101 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -13984,11 +7519,13 @@ } }, { - "name": "4-Pixel", - "md5": "6238b9b95fad7f7aa9cef9bde5bde474.svg", + "name": "Hat Wizard", + "md5": "581571e8c8f5adeb01565e12b1b77b58.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "fantasy", + "things", "drawing", "vector" ], @@ -13998,129 +7535,25 @@ 1 ], "json": { - "objName": "4-Pixel", + "objName": "Hat Wizard", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "4-pixel", + "costumeName": "hat wizard", "baseLayerID": -1, - "baseLayerMD5": "6238b9b95fad7f7aa9cef9bde5bde474.svg", + "baseLayerMD5": "581571e8c8f5adeb01565e12b1b77b58.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "rotationCenterX": 76, + "rotationCenterY": 69 } ], "currentCostumeIndex": 0, @@ -14136,11 +7569,12 @@ } }, { - "name": "5-Pixel", - "md5": "aef915acf1d49deed46692411e6c6039.svg", + "name": "Headband", + "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], @@ -14150,129 +7584,25 @@ 1 ], "json": { - "objName": "5-Pixel", + "objName": "Headband", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "5-pixel", + "costumeName": "headband", "baseLayerID": -1, - "baseLayerMD5": "aef915acf1d49deed46692411e6c6039.svg", + "baseLayerMD5": "961148d1605a1bd8ce80ed8d39e831c2.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 19 + "rotationCenterX": 53, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, @@ -14281,156 +7611,184 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "6-Pixel", - "md5": "e6ad1d1fe44a1c63c8f99c0bbb893a44.svg", + "name": "Heart", + "md5": "6e79e087c866a016f99ee482e1aeba47.svg", "type": "sprite", "tags": [ - "letters", + "things", + "flying", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "6-Pixel", + "objName": "Heart", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "tom drum", + "soundID": -1, + "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", + "sampleCount": 33920, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "heart red", + "baseLayerID": -1, + "baseLayerMD5": "6e79e087c866a016f99ee482e1aeba47.svg", + "bitmapResolution": 1, + "rotationCenterX": 65, + "rotationCenterY": 56 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + "costumeName": "heart purple", + "baseLayerID": -1, + "baseLayerMD5": "b15362bb6b02a59e364db9081ccf19aa.svg", + "bitmapResolution": 1, + "rotationCenterX": 66, + "rotationCenterY": 62 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.55, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Heart Candy", + "md5": "d448acd247f10f32bef7823cd433f928.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Heart Candy", + "sounds": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "tom drum", + "soundID": -1, + "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", + "sampleCount": 33920, "rate": 22050, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "heart love it", + "baseLayerID": -1, + "baseLayerMD5": "d448acd247f10f32bef7823cd433f928.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "heart code", + "baseLayerID": -1, + "baseLayerMD5": "497c5df9e02467202ff93096dccaf91f.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "heart sweet", + "baseLayerID": -1, + "baseLayerMD5": "a39d78d33b051e8b12a4b2a10d77b249.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 61 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "heart smile", + "baseLayerID": -1, + "baseLayerMD5": "74a8f75d139d330b715787edbbacd83d.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 61 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.55, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Heart Face", + "md5": "4ab84263da32069cf97cc0fa52729a0d.svg", + "type": "sprite", + "tags": [ + "things", + "holiday", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Heart Face", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "tom drum", + "soundID": -1, + "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", + "sampleCount": 33920, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "6-pixel", + "costumeName": "heart face", "baseLayerID": -1, - "baseLayerMD5": "e6ad1d1fe44a1c63c8f99c0bbb893a44.svg", + "baseLayerMD5": "4ab84263da32069cf97cc0fa52729a0d.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 17 + "rotationCenterX": 59, + "rotationCenterY": 52 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.55, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -14440,11 +7798,12 @@ } }, { - "name": "7-Pixel", - "md5": "469b4fb6f6f8721e2c244ae9c71a7e66.svg", + "name": "Heart Scratch", + "md5": "2bfa5c3b41d4be160ab0c157ce0f96a9.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], @@ -14454,129 +7813,131 @@ 1 ], "json": { - "objName": "7-Pixel", + "objName": "Heart Scratch", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance snare beat", + "soundID": -1, + "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, + "costumeName": "heart scratch", + "baseLayerID": -1, + "baseLayerMD5": "2bfa5c3b41d4be160ab0c157ce0f96a9.svg", + "bitmapResolution": 1, + "rotationCenterX": 81, + "rotationCenterY": 77 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.55, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Helicopter", + "md5": "8847e2d3383906dbabbf7ffa98945a7b.png", + "type": "sprite", + "tags": [ + "transportation", + "flying", + "city", + "drawing", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Helicopter", + "sounds": [ { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "helicopter", + "baseLayerID": -1, + "baseLayerMD5": "8847e2d3383906dbabbf7ffa98945a7b.png", + "rotationCenterX": 90, + "rotationCenterY": 64 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Hippo1", + "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", + "type": "sprite", + "tags": [ + "animals", + "flying", + "fantasy", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Hippo1", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "7-pixel", + "costumeName": "hippo1-a", "baseLayerID": -1, - "baseLayerMD5": "469b4fb6f6f8721e2c244ae9c71a7e66.svg", + "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 19 + "rotationCenterX": 69, + "rotationCenterY": 65 + }, + { + "costumeName": "hippo1-b", + "baseLayerID": -1, + "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 68 } ], "currentCostumeIndex": 0, @@ -14592,143 +7953,48 @@ } }, { - "name": "8-Pixel", - "md5": "5bfcf2c715b81ae380ae2983bb4c5bb2.svg", + "name": "Holly", + "md5": "1d8583ca1b5c687f3de004c27110a130.svg", "type": "sprite", "tags": [ - "letters", + "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "8-Pixel", + "objName": "Holly", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "8-pixel", + "costumeName": "holly1", "baseLayerID": -1, - "baseLayerMD5": "5bfcf2c715b81ae380ae2983bb4c5bb2.svg", + "baseLayerMD5": "1d8583ca1b5c687f3de004c27110a130.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 + "rotationCenterX": 29, + "rotationCenterY": 44 + }, + { + "costumeName": "holly2", + "baseLayerID": -1, + "baseLayerMD5": "4b23f1d694ae8b400f1d7216dd8e49bc.svg", + "bitmapResolution": 1, + "rotationCenterX": 27, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -14744,11 +8010,11 @@ } }, { - "name": "9-Pixel", - "md5": "8014a66c758f1bc389194c988badb382.svg", + "name": "Home Button", + "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -14758,129 +8024,81 @@ 1 ], "json": { - "objName": "9-Pixel", + "objName": "Home Button", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "home button", + "baseLayerID": -1, + "baseLayerMD5": "1bac530a0701a8fc88bb0802ae6787a3.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Horse1", + "md5": "32f4d80477cd070cb0848e555d374060.svg", + "type": "sprite", + "tags": [ + "animals", + "transportation", + "vector", + "drawing" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Horse1", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "9-pixel", + "costumeName": "horse1-a", "baseLayerID": -1, - "baseLayerMD5": "8014a66c758f1bc389194c988badb382.svg", + "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 20 + "rotationCenterX": 119, + "rotationCenterY": 83 + }, + { + "costumeName": "horse1-b", + "baseLayerID": -1, + "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", + "bitmapResolution": 1, + "rotationCenterX": 103, + "rotationCenterY": 97 } ], "currentCostumeIndex": 0, @@ -14896,159 +8114,48 @@ } }, { - "name": "A-Story", - "md5": "a541431ea1b67b2100b2ef59927df0d7.svg", + "name": "Jaime", + "md5": "3ddc912edef87ae29121f57294fa0cb5.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "A-Story", + "objName": "Jaime", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "A-story-1", - "baseLayerID": -1, - "baseLayerMD5": "a541431ea1b67b2100b2ef59927df0d7.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 26 - }, - { - "costumeName": "A-story-2", + "costumeName": "jaime-a", "baseLayerID": -1, - "baseLayerMD5": "f277943adf8d79b41b9b568321a786ee.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 26 + "baseLayerMD5": "3ddc912edef87ae29121f57294fa0cb5.png", + "bitmapResolution": 2, + "rotationCenterX": 76, + "rotationCenterY": 154 }, { - "costumeName": "A-story-3", + "costumeName": "jaime-b", "baseLayerID": -1, - "baseLayerMD5": "cc0cc7ae3240eab7d040e148cc663325.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 + "baseLayerMD5": "5a683f4536abca0f83a77bc341df4c9a.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 154 } ], "currentCostumeIndex": 0, @@ -15064,159 +8171,121 @@ } }, { - "name": "B-Story", - "md5": "3f3b274d161bae432bd5966a33114fd0.svg", + "name": "Jaime Walking", + "md5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", + "walking", "drawing", "vector" ], "info": [ 0, - 3, + 5, 1 ], "json": { - "objName": "B-Story", + "objName": "Jaime Walking", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "jaime walking-a", + "baseLayerID": -1, + "baseLayerMD5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", + "bitmapResolution": 2, + "rotationCenterX": 106, + "rotationCenterY": 172 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "jaime walking-b", + "baseLayerID": -1, + "baseLayerMD5": "7fb579a98d6db257f1b16109d3c4609a.png", + "bitmapResolution": 2, + "rotationCenterX": 52, + "rotationCenterY": 176 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "jaime walking-c", + "baseLayerID": -1, + "baseLayerMD5": "5883bdefba451aaeac8d77c798d41eb0.png", + "bitmapResolution": 2, + "rotationCenterX": 88, + "rotationCenterY": 170 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "jaime walking-d", + "baseLayerID": -1, + "baseLayerMD5": "4b9d2162e30dbb924840575ed35fddb0.png", + "bitmapResolution": 2, + "rotationCenterX": 46, + "rotationCenterY": 174 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "jaime walking-e", + "baseLayerID": -1, + "baseLayerMD5": "63e56d28cc3e3d9b735e1f1d51248cc0.png", + "bitmapResolution": 2, + "rotationCenterX": 84, + "rotationCenterY": 172 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Jay", + "md5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", + "type": "sprite", + "tags": [ + "people", + "city", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Jay", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "B-story-1", - "baseLayerID": -1, - "baseLayerMD5": "3f3b274d161bae432bd5966a33114fd0.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "B-story-2", - "baseLayerID": -1, - "baseLayerMD5": "07fa4ebc421d84743b6ced189dd2f9cf.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 25 - }, - { - "costumeName": "B-story-3", + "costumeName": "jay", "baseLayerID": -1, - "baseLayerMD5": "6c9a9203155f93f24f31b30e3bd76b6d.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 23 + "baseLayerMD5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", + "rotationCenterX": 70, + "rotationCenterY": 100 } ], "currentCostumeIndex": 0, @@ -15232,159 +8301,48 @@ } }, { - "name": "C-Story", - "md5": "786383a7baf7ff58bdcbd55d8a7395a1.svg", + "name": "Jeans", + "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg", "type": "sprite", "tags": [ - "letters", + "dress-up", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "C-Story", + "objName": "Jeans", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "C-story-1", + "costumeName": "jeans-a", "baseLayerID": -1, - "baseLayerMD5": "786383a7baf7ff58bdcbd55d8a7395a1.svg", + "baseLayerMD5": "4e283da8c59bcbb9803bdc0016b14c21.svg", "bitmapResolution": 1, "rotationCenterX": 22, - "rotationCenterY": 26 + "rotationCenterY": 25 }, { - "costumeName": "C-story-2", + "costumeName": "jeans-b", "baseLayerID": -1, - "baseLayerMD5": "1045c56c4be3d8d0650579864417fbc7.svg", + "baseLayerMD5": "01732aa03a48482093fbed3ea402c4a9.svg", "bitmapResolution": 1, "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "C-story-3", - "baseLayerID": -1, - "baseLayerMD5": "c8fd35294d17a369fecb6d6e4725d04a.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, @@ -15393,166 +8351,46 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "D-Story", - "md5": "ec60df3b4dfde735f72d3a641b737800.svg", + "name": "Jodi", + "md5": "a8ae8b69caa6a837f49aa950055ef29a.gif", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "sports", + "photo", + "bitmap" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "D-Story", + "objName": "Jodi", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "D-story-1", - "baseLayerID": -1, - "baseLayerMD5": "ec60df3b4dfde735f72d3a641b737800.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 26 - }, - { - "costumeName": "D-story-2", - "baseLayerID": -1, - "baseLayerMD5": "3e4cc4cff08bb42bc690eff66dffbbe9.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 26 - }, - { - "costumeName": "D-story-3", + "costumeName": "jodi", "baseLayerID": -1, - "baseLayerMD5": "bd7f984fe82d9d0fdcff0a87b3c0f9e0.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 23 + "baseLayerMD5": "a8ae8b69caa6a837f49aa950055ef29a.gif", + "rotationCenterX": 54, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -15568,159 +8406,137 @@ } }, { - "name": "E-Story", - "md5": "c227b91edab98c183bb0700acf00764f.svg", + "name": "Jouvi Hip-Hop", + "md5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 3, + 13, 1 ], "json": { - "objName": "E-Story", + "objName": "Jouvi Hip-Hop", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance celebrate2", + "soundID": -1, + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "jo stance", + "baseLayerID": -1, + "baseLayerMD5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", + "bitmapResolution": 2, + "rotationCenterX": 94, + "rotationCenterY": 240 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "jo top stand", + "baseLayerID": -1, + "baseLayerMD5": "a91fe6e180b524d27688aa0cd82cd629.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 260 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "jo top R leg", + "baseLayerID": -1, + "baseLayerMD5": "de64c526a57355af5fd6ff28f27b67ea.png", + "bitmapResolution": 2, + "rotationCenterX": 218, + "rotationCenterY": 262 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "jo top L leg", + "baseLayerID": -1, + "baseLayerMD5": "987a667cd7984d9e5429c26b8a4cab2d.png", + "bitmapResolution": 2, + "rotationCenterX": 208, + "rotationCenterY": 268 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "jo top R cross", + "baseLayerID": -1, + "baseLayerMD5": "ddbd8751df020cc32231ecb4e7b5388d.png", + "bitmapResolution": 2, + "rotationCenterX": 144, + "rotationCenterY": 270 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "jo top L cross", + "baseLayerID": -1, + "baseLayerMD5": "33660046a3d37fa762f4a634ee3df75d.png", + "bitmapResolution": 2, + "rotationCenterX": 84, + "rotationCenterY": 268 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "jo pop front", + "baseLayerID": -1, + "baseLayerMD5": "0503f4d712bc3184cf1b5f830d0df993.png", + "bitmapResolution": 2, + "rotationCenterX": 70, + "rotationCenterY": 228 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "jo pop down", + "baseLayerID": -1, + "baseLayerMD5": "95a0f1bb3d8055a283aecc6bcb6303c9.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 74 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "jo pop left", + "baseLayerID": -1, + "baseLayerMD5": "98e8c2f9869f9356204ed19e43ae01cc.png", + "bitmapResolution": 2, + "rotationCenterX": 196, + "rotationCenterY": 226 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "jo pop right", + "baseLayerID": -1, + "baseLayerMD5": "7bf1600ee75facb510c2922f899fb97c.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 242 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "E-story-1", + "costumeName": "jo pop L arm", "baseLayerID": -1, - "baseLayerMD5": "c227b91edab98c183bb0700acf00764f.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 + "baseLayerMD5": "2a907e6edf8a101addb2c27d0568896a.png", + "bitmapResolution": 2, + "rotationCenterX": 108, + "rotationCenterY": 258 }, { - "costumeName": "E-story-2", + "costumeName": "jo pop stand", "baseLayerID": -1, - "baseLayerMD5": "8bba14966fe35f0dccb66ef06a9843ca.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 + "baseLayerMD5": "361d1884737ef734f6a39fd66fc269ec.png", + "bitmapResolution": 2, + "rotationCenterX": 78, + "rotationCenterY": 262 }, { - "costumeName": "E-story-3", + "costumeName": "jo pop R arm", "baseLayerID": -1, - "baseLayerMD5": "e8cfc63375f6d6c2a580823489427f38.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 23 + "baseLayerMD5": "e633eb002deb20108bb5100d4b3a8fc5.png", + "bitmapResolution": 2, + "rotationCenterX": 108, + "rotationCenterY": 260 } ], "currentCostumeIndex": 0, @@ -15736,159 +8552,48 @@ } }, { - "name": "F-Story", - "md5": "0ffc2ff1c96a596a72552c85c9a5be1a.svg", + "name": "Kai", + "md5": "6e007fde15e49c66ee7996561f80b452.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", - "vector" + "bitmap" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "F-Story", + "objName": "Kai", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "F-story-1", - "baseLayerID": -1, - "baseLayerMD5": "0ffc2ff1c96a596a72552c85c9a5be1a.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 26 - }, - { - "costumeName": "F-story-2", + "costumeName": "kai-a", "baseLayerID": -1, - "baseLayerMD5": "0dbe4a064abea1a9a3bc0d2732643e6b.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 25 + "baseLayerMD5": "6e007fde15e49c66ee7996561f80b452.png", + "bitmapResolution": 2, + "rotationCenterX": 68, + "rotationCenterY": 160 }, { - "costumeName": "F-story-3", + "costumeName": "kai-b", "baseLayerID": -1, - "baseLayerMD5": "3db373f4482e391e66d1b06335a96144.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 23 + "baseLayerMD5": "c1e1149f6d7e308e3e4eba14ccc8a751.png", + "bitmapResolution": 2, + "rotationCenterX": 82, + "rotationCenterY": 158 } ], "currentCostumeIndex": 0, @@ -15904,159 +8609,112 @@ } }, { - "name": "G-Story", - "md5": "d39a8a56ea511a40d3b98300dbd19f9b.svg", + "name": "Key", + "md5": "af35300cef35803e11f4ed744dc5e818.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "G-Story", + "objName": "Key", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "key", + "baseLayerID": -1, + "baseLayerMD5": "af35300cef35803e11f4ed744dc5e818.svg", + "rotationCenterX": 42, + "rotationCenterY": 27 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Khalid Dance", + "md5": "d0018780c7458f002b6fec6d1fea3570.png", + "type": "sprite", + "tags": [ + "people", + "dance", + "city", + "photo", + "bitmap" + ], + "info": [ + 0, + 4, + 1 + ], + "json": { + "objName": "Khalid Dance", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "G-story-1", + "costumeName": "khalid-a", "baseLayerID": -1, - "baseLayerMD5": "d39a8a56ea511a40d3b98300dbd19f9b.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 25 + "baseLayerMD5": "d0018780c7458f002b6fec6d1fea3570.png", + "bitmapResolution": 2, + "rotationCenterX": 79, + "rotationCenterY": 101 }, { - "costumeName": "G-story-2", + "costumeName": "Khalid-b", "baseLayerID": -1, - "baseLayerMD5": "991023d303f79ce092f070392ffbd69f.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 25 + "baseLayerMD5": "88023269142bfc3ecab5b13cc8cbddb9.png", + "bitmapResolution": 2, + "rotationCenterX": 69, + "rotationCenterY": 103 }, { - "costumeName": "G-story-3", + "costumeName": "khalid-c", "baseLayerID": -1, - "baseLayerMD5": "38f22c0d8dbe541bde409ba1f241d4c1.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 + "baseLayerMD5": "30dbce950a2d2dddc0ea53d1462d116b.png", + "bitmapResolution": 2, + "rotationCenterX": 69, + "rotationCenterY": 109 + }, + { + "costumeName": "khalid-d", + "baseLayerID": -1, + "baseLayerMD5": "e189aec22f4cb57a90f75457615fbbd8.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 63 } ], "currentCostumeIndex": 0, @@ -16072,159 +8730,39 @@ } }, { - "name": "H-Story", - "md5": "28461ea7b94a55ce4ecf54241a0b7523.svg", + "name": "Knight", + "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", "drawing", + "castle", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "H-Story", + "objName": "Knight", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "H-story-1", - "baseLayerID": -1, - "baseLayerMD5": "28461ea7b94a55ce4ecf54241a0b7523.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 - }, - { - "costumeName": "H-story-2", - "baseLayerID": -1, - "baseLayerMD5": "ca33be5270308a695c9b88af73f590dc.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 - }, - { - "costumeName": "H-story-3", + "costumeName": "knight", "baseLayerID": -1, - "baseLayerMD5": "668ba2b891f82ce78d8590f0287632b1.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 + "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -16240,159 +8778,38 @@ } }, { - "name": "I-Story", - "md5": "cdf36c8bd803819996a392089b040c3d.svg", + "name": "Ladybug1", + "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "I-Story", + "objName": "Ladybug1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "I-story-1", - "baseLayerID": -1, - "baseLayerMD5": "cdf36c8bd803819996a392089b040c3d.svg", - "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 26 - }, - { - "costumeName": "I-story-2", - "baseLayerID": -1, - "baseLayerMD5": "7b3ae96764795727fa1cb0be68a9ca5e.svg", - "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 26 - }, - { - "costumeName": "I-story-3", + "costumeName": "ladybug2", "baseLayerID": -1, - "baseLayerMD5": "3475aa570304accb7e6dbd2516234135.svg", - "bitmapResolution": 1, - "rotationCenterX": 7, - "rotationCenterY": 23 + "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "rotationCenterX": 41, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, @@ -16408,159 +8825,140 @@ } }, { - "name": "J-Story", - "md5": "6a10a69d1ce075a24abc8073bb402ab6.svg", + "name": "Ladybug2", + "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "J-Story", + "objName": "Ladybug2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" + "costumeName": "ladybug2-a", + "baseLayerID": -1, + "baseLayerMD5": "c018a3eed966d5f92c69f2188dfd2aae.svg", + "rotationCenterX": 49, + "rotationCenterY": 28 }, + { + "costumeName": "ladybug2-b", + "baseLayerID": -1, + "baseLayerMD5": "a2bb15ace808e070a2b815502952b292.svg", + "rotationCenterX": 49, + "rotationCenterY": 28 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Lamp", + "md5": "4885678710301cda511018ad7e420c9c.png", + "type": "sprite", + "tags": [ + "things", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Lamp", + "sounds": [ { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "lamp", + "baseLayerID": -1, + "baseLayerMD5": "4885678710301cda511018ad7e420c9c.png", + "rotationCenterX": 25, + "rotationCenterY": 41 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Laptop", + "md5": "76f456b30b98eeefd7c942b27b524e31.svg", + "type": "sprite", + "tags": [ + "things", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Laptop", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "J-story-1", - "baseLayerID": -1, - "baseLayerMD5": "6a10a69d1ce075a24abc8073bb402ab6.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 25 - }, - { - "costumeName": "J-story-2", - "baseLayerID": -1, - "baseLayerMD5": "0ab9a94fc2e32160efc113a8e5ffb984.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 25 - }, - { - "costumeName": "J-story-3", + "costumeName": "laptop", "baseLayerID": -1, - "baseLayerMD5": "c9356a022cfbc25be6c484e9781e4637.svg", + "baseLayerMD5": "76f456b30b98eeefd7c942b27b524e31.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 24 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -16576,159 +8974,137 @@ } }, { - "name": "K-Story", - "md5": "76812d04542ffbd8aa77d593f1bced44.svg", + "name": "LB Hip-Hop", + "md5": "61b464a77536f75490d8891fb877819a.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 3, + 13, 1 ], "json": { - "objName": "K-Story", + "objName": "LB Hip-Hop", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "dance celebrate", + "soundID": -1, + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, "rate": 22050, "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "costumeName": "lb stance", + "baseLayerID": -1, + "baseLayerMD5": "61b464a77536f75490d8891fb877819a.png", + "bitmapResolution": 2, + "rotationCenterX": 54, + "rotationCenterY": 244 }, { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" + "costumeName": "lb top stand", + "baseLayerID": -1, + "baseLayerMD5": "dfe3628ddf46a67dcc21c63be65a8e40.png", + "bitmapResolution": 2, + "rotationCenterX": 70, + "rotationCenterY": 248 }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "lb top R leg", + "baseLayerID": -1, + "baseLayerMD5": "e824768a109691b5a3c577d3506ed70c.png", + "bitmapResolution": 2, + "rotationCenterX": 244, + "rotationCenterY": 250 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "lb top L leg", + "baseLayerID": -1, + "baseLayerMD5": "350472368e2310efe6fa734b79f0ff41.png", + "bitmapResolution": 2, + "rotationCenterX": 234, + "rotationCenterY": 286 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "lb top L cross", + "baseLayerID": -1, + "baseLayerMD5": "5a151c4d4e2e2f870d9096d5fce6ed48.png", + "bitmapResolution": 2, + "rotationCenterX": 148, + "rotationCenterY": 258 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "lb top R cross", + "baseLayerID": -1, + "baseLayerMD5": "99acf468000c6fcbaf344e4531725efc.png", + "bitmapResolution": 2, + "rotationCenterX": 174, + "rotationCenterY": 256 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "lb pop front", + "baseLayerID": -1, + "baseLayerMD5": "e34a166807a3ffbf8d147b12aa49dd19.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 272 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "lb pop down", + "baseLayerID": -1, + "baseLayerMD5": "8e41de92cb932a6898782a39a0d7d300.png", + "bitmapResolution": 2, + "rotationCenterX": 56, + "rotationCenterY": 90 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "lb pop left", + "baseLayerID": -1, + "baseLayerMD5": "ff1b96d1047d4be459a4614ce7c7c94c.png", + "bitmapResolution": 2, + "rotationCenterX": 198, + "rotationCenterY": 266 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "lb pop right", + "baseLayerID": -1, + "baseLayerMD5": "d6d5534c628ac5d5fe3cbf1b76b71252.png", + "bitmapResolution": 2, + "rotationCenterX": 76, + "rotationCenterY": 264 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "K-story-1", + "costumeName": "lb pop L arm", "baseLayerID": -1, - "baseLayerMD5": "76812d04542ffbd8aa77d593f1bced44.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 + "baseLayerMD5": "c1fd31607619b8c98a286a650f248511.png", + "bitmapResolution": 2, + "rotationCenterX": 100, + "rotationCenterY": 262 }, { - "costumeName": "K-story-2", + "costumeName": "lb pop stand", "baseLayerID": -1, - "baseLayerMD5": "ef02339e8a0382367f0b5a414915b885.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 + "baseLayerMD5": "51fe5962fe4d2af7f6fad7abaa692069.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 268 }, { - "costumeName": "K-story-3", + "costumeName": "lb pop R arm", "baseLayerID": -1, - "baseLayerMD5": "07977708617d12381b22d1ee0f4926a3.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 + "baseLayerMD5": "aa57575fde5ff8b13041e3a7b1499fe0.png", + "bitmapResolution": 2, + "rotationCenterX": 78, + "rotationCenterY": 258 } ], "currentCostumeIndex": 0, @@ -16744,159 +9120,40 @@ } }, { - "name": "L-Story", - "md5": "444e9ceca500ef96a92879678109ef38.svg", + "name": "Lightning", + "md5": "c2d636ab2b491e591536afc3d49cbecd.svg", "type": "sprite", "tags": [ - "letters", + "things", + "castle", + "nature", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "L-Story", + "objName": "Lightning", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "L-story-1", - "baseLayerID": -1, - "baseLayerMD5": "444e9ceca500ef96a92879678109ef38.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "L-story-2", - "baseLayerID": -1, - "baseLayerMD5": "067c21a9b2f91ed33e07131ce5a59210.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "L-story-3", + "costumeName": "lightning", "baseLayerID": -1, - "baseLayerMD5": "488d66f17c0089a7796d44cfc70792e8.svg", - "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 23 + "baseLayerMD5": "c2d636ab2b491e591536afc3d49cbecd.svg", + "rotationCenterX": 21, + "rotationCenterY": 83 } ], "currentCostumeIndex": 0, @@ -16912,162 +9169,50 @@ } }, { - "name": "M-Story", - "md5": "9197a1edb925c94fc912367a2943bc69.svg", + "name": "Lion", + "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "M-Story", + "objName": "Lion", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "M-story-1", - "baseLayerID": -1, - "baseLayerMD5": "9197a1edb925c94fc912367a2943bc69.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 25 - }, - { - "costumeName": "M-story-2", + "costumeName": "lion-a", "baseLayerID": -1, - "baseLayerMD5": "55f00a23d0f5cc57be9533f126a7ac8c.svg", + "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg", "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 25 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "M-story-3", + "costumeName": "lion-b", "baseLayerID": -1, - "baseLayerMD5": "613df2bd97784a239ab992f7a95458a0.svg", + "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg", "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 24 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -17080,159 +9225,39 @@ } }, { - "name": "N-Story", - "md5": "d604d95ad1367813fdc67c362bb9d298.svg", + "name": "Lionness", + "md5": "8b5f49d4f91f61fbdcb4abac53ab5c7c.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "N-Story", + "objName": "Lionness", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "N-story-1", - "baseLayerID": -1, - "baseLayerMD5": "d604d95ad1367813fdc67c362bb9d298.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 25 - }, - { - "costumeName": "N-story-2", - "baseLayerID": -1, - "baseLayerMD5": "5e07ee61cb20bc575720774584dfec53.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 25 - }, - { - "costumeName": "N-story-3", + "costumeName": "lioness", "baseLayerID": -1, - "baseLayerMD5": "435697335345f946d943c1d89fdb459a.svg", + "baseLayerMD5": "8b5f49d4f91f61fbdcb4abac53ab5c7c.svg", "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 23 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -17248,162 +9273,114 @@ } }, { - "name": "O-Story", - "md5": "46173e0ec42c17d22b29c88929c49f2c.svg", + "name": "Lornz OdetoCode", + "md5": "bf911c597995031014bbf32a8eb9d997.png", "type": "sprite", "tags": [ - "letters", - "drawing", - "vector" + "people", + "dance", + "photo", + "bitmap" ], "info": [ - 0, - 3, + 1, + 8, 1 ], "json": { - "objName": "O-Story", + "objName": "Lornz OdetoCode", + "scripts": [ + [ + 10, + 10, + [ + [ + "whenKeyPressed", + "space" + ], + [ + "nextCostume" + ] + ] + ] + ], "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "odesong-b", + "soundID": -1, + "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", + "sampleCount": 212553, "rate": 22050, "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" + "costumeName": "lorenz01", + "baseLayerID": -1, + "baseLayerMD5": "bf911c597995031014bbf32a8eb9d997.png", + "bitmapResolution": 2, + "rotationCenterX": 71, + "rotationCenterY": 252 }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "lorenz02", + "baseLayerID": -1, + "baseLayerMD5": "a1fb3946afc4c064503656d5d8ed0def.png", + "bitmapResolution": 2, + "rotationCenterX": 120, + "rotationCenterY": 252 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "lorenz03", + "baseLayerID": -1, + "baseLayerMD5": "1da2ed229f84c1e6d1693bce3bf2d27f.png", + "bitmapResolution": 2, + "rotationCenterX": 125, + "rotationCenterY": 252 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" + "costumeName": "lorenz04", + "baseLayerID": -1, + "baseLayerMD5": "6b798489bdf2c48337ccb2d31fc64c5f.png", + "bitmapResolution": 2, + "rotationCenterX": 124, + "rotationCenterY": 109 }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" + "costumeName": "lorenz05", + "baseLayerID": -1, + "baseLayerMD5": "dc4e7a7e84f20802d4c1b12423738f62.png", + "bitmapResolution": 2, + "rotationCenterX": 141, + "rotationCenterY": 252 }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "O-story-1", + "costumeName": "lorenz06", "baseLayerID": -1, - "baseLayerMD5": "46173e0ec42c17d22b29c88929c49f2c.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 + "baseLayerMD5": "92db5fdd19b29f32890926d808e764af.png", + "bitmapResolution": 2, + "rotationCenterX": 132, + "rotationCenterY": 250 }, { - "costumeName": "O-story-2", + "costumeName": "lorenz07", "baseLayerID": -1, - "baseLayerMD5": "e8fa671bb1ca53c044bfb27225321c25.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 + "baseLayerMD5": "6b65c2e80daf820d0f277af4f7352cbc.png", + "bitmapResolution": 2, + "rotationCenterX": 121, + "rotationCenterY": 252 }, { - "costumeName": "O-story-3", + "costumeName": "lorenz07b", "baseLayerID": -1, - "baseLayerMD5": "a132bf3d4084ef8ca9e0797f64c0f082.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 + "baseLayerMD5": "97ef7f1f07248305725f74a0cc127eba.png", + "bitmapResolution": 2, + "rotationCenterX": 115, + "rotationCenterY": 252 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 7, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -17416,159 +9393,89 @@ } }, { - "name": "P-Story", - "md5": "e6e5ccc4bd44680b4c21fabefc009e4f.svg", + "name": "Magic Carpet", + "md5": "66b74069378c828cb21d2dbe2227a31a.png", "type": "sprite", "tags": [ - "letters", + "transportation", + " fantasy", + "flying", + "castle", "drawing", - "vector" + "bitmap" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "P-Story", + "objName": "Magic Carpet", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "magiccarpet", + "baseLayerID": -1, + "baseLayerMD5": "66b74069378c828cb21d2dbe2227a31a.png", + "rotationCenterX": 90, + "rotationCenterY": 31 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Magic Wand", + "md5": "3db9bfe57d561557795633c5cda44e8c.svg", + "type": "sprite", + "tags": [ + "things", + "castle", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Magic Wand", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "P-story-1", - "baseLayerID": -1, - "baseLayerMD5": "e6e5ccc4bd44680b4c21fabefc009e4f.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "P-story-2", - "baseLayerID": -1, - "baseLayerMD5": "781c42f9da36bbc0ee3775f18ac98124.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "P-story-3", + "costumeName": "magicwand", "baseLayerID": -1, - "baseLayerMD5": "bcaec7c778920d8d74c275c1aff634fe.svg", - "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 24 + "baseLayerMD5": "3db9bfe57d561557795633c5cda44e8c.svg", + "rotationCenterX": 41, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -17584,159 +9491,208 @@ } }, { - "name": "Q-Story", - "md5": "24c5beac46f4452bffe23e3c4e8a4a4c.svg", + "name": "Maya", + "md5": "8b7ff2f1190825367112c2c076e34af3.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Q-Story", + "objName": "Maya", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, + "costumeName": "maya", + "baseLayerID": -1, + "baseLayerMD5": "8b7ff2f1190825367112c2c076e34af3.png", + "bitmapResolution": 2, + "rotationCenterX": 72, + "rotationCenterY": 138 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Marble Building", + "md5": "53608adfaea6e927dc11b53f604e2a1e.png", + "type": "sprite", + "tags": [ + "things", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Marble Building", + "sounds": [ { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, + "costumeName": "marble-building", + "baseLayerID": -1, + "baseLayerMD5": "53608adfaea6e927dc11b53f604e2a1e.png", + "rotationCenterX": 50, + "rotationCenterY": 68 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Microphone", + "md5": "59109aefada55997b9497c6266695830.svg", + "type": "sprite", + "tags": [ + "things", + "music", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 10 + ], + "json": { + "objName": "Microphone", + "sounds": [ + { + "soundName": "bass beatbox", + "soundID": -1, + "md5": "28153621d293c86da0b246d314458faf.wav", + "sampleCount": 6720, + "rate": 22050, "format": "" }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, + "soundName": "hi beatbox", + "soundID": -1, + "md5": "5a07847bf246c227204728b05a3fc8f3.wav", + "sampleCount": 5856, + "rate": 22050, "format": "" }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "snare beatbox", + "soundID": -1, + "md5": "c642c4c00135d890998f351faec55498.wav", + "sampleCount": 5630, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "scratching beatbox", + "soundID": -1, + "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", + "sampleCount": 11552, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "crash beatbox", + "soundID": -1, + "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", + "sampleCount": 26883, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, + "soundName": "wub beatbox", + "soundID": -1, "md5": "e1f32c057411da4237181ce72ae15d23.wav", "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, + "soundName": "hihat beatbox", + "soundID": -1, + "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", + "sampleCount": 4274, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "rim beatbox", + "soundID": -1, + "md5": "7ede1382b578d8fc32850b48d082d914.wav", + "sampleCount": 4960, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "clap beatbox", + "soundID": -1, + "md5": "abc70bb390f8e55f22f32265500d814a.wav", + "sampleCount": 4224, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "wah beatbox", + "soundID": -1, + "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", + "sampleCount": 6624, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "Q-story-1", - "baseLayerID": -1, - "baseLayerMD5": "24c5beac46f4452bffe23e3c4e8a4a4c.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 30 - }, - { - "costumeName": "Q-story-2", - "baseLayerID": -1, - "baseLayerMD5": "31f28be74dc7de42a5c4a38504d666ca.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 30 - }, - { - "costumeName": "Q-story-3", + "costumeName": "microphone", "baseLayerID": -1, - "baseLayerMD5": "aef19097378515308e934a79f147032e.svg", + "baseLayerMD5": "59109aefada55997b9497c6266695830.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 29 + "rotationCenterX": 27, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, @@ -17752,159 +9708,112 @@ } }, { - "name": "R-Story", - "md5": "ef26045ebaccbf271ca2370ed95c73ab.svg", + "name": "Microphone Stand", + "md5": "fe85f2d5a94d27b6d793361c3fddcf77.svg", "type": "sprite", "tags": [ - "letters", + "things", + "music", "drawing", "vector" ], "info": [ 0, - 3, - 1 + 1, + 10 ], "json": { - "objName": "R-Story", + "objName": "Microphone Stand", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, + "soundName": "bass beatbox", + "soundID": -1, + "md5": "28153621d293c86da0b246d314458faf.wav", + "sampleCount": 6720, "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, "format": "" }, { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, + "soundName": "hi beatbox", + "soundID": -1, + "md5": "5a07847bf246c227204728b05a3fc8f3.wav", + "sampleCount": 5856, + "rate": 22050, "format": "" }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "snare beatbox", + "soundID": -1, + "md5": "726fea2968a387ef566c03d163f17668.wav", + "sampleCount": 6102, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "scratching beatbox", + "soundID": -1, + "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", + "sampleCount": 11552, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "crash beatbox", + "soundID": -1, + "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", + "sampleCount": 26883, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, + "soundName": "wub beatbox", + "soundID": -1, "md5": "e1f32c057411da4237181ce72ae15d23.wav", "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, + "soundName": "hihat beatbox", + "soundID": -1, + "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", + "sampleCount": 4274, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "rim beatbox", + "soundID": -1, + "md5": "7ede1382b578d8fc32850b48d082d914.wav", + "sampleCount": 4960, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "clap beatbox", + "soundID": -1, + "md5": "abc70bb390f8e55f22f32265500d814a.wav", + "sampleCount": 4224, "rate": 22050, "format": "" }, { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "soundName": "wah beatbox", + "soundID": -1, + "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", + "sampleCount": 6624, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "R-story-1", + "costumeName": "microphonestand", "baseLayerID": -1, - "baseLayerMD5": "ef26045ebaccbf271ca2370ed95c73ab.svg", + "baseLayerMD5": "fe85f2d5a94d27b6d793361c3fddcf77.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "R-story-2", - "baseLayerID": -1, - "baseLayerMD5": "926f8ff770cb15b42b12f209fd02d98c.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "R-story-3", - "baseLayerID": -1, - "baseLayerMD5": "a66d8f0ba6d40c624873edc8df58c014.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 23 + "rotationCenterX": 57, + "rotationCenterY": 55 } ], "currentCostumeIndex": 0, @@ -17920,165 +9829,53 @@ } }, { - "name": "S-Story", - "md5": "dccb5c52aa6e674d7747e172f9c52cb6.svg", + "name": "Monkey1", + "md5": "d0819570ed955416190eab2e020071ca.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "S-Story", + "objName": "Monkey1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "S-story-1", - "baseLayerID": -1, - "baseLayerMD5": "dccb5c52aa6e674d7747e172f9c52cb6.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 25 - }, - { - "costumeName": "S-story-2", + "costumeName": "monkey1-a", "baseLayerID": -1, - "baseLayerMD5": "c529ed7b40f4a949539f8f454e3fe475.svg", + "baseLayerMD5": "d0819570ed955416190eab2e020071ca.svg", "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 25 + "rotationCenterX": 44, + "rotationCenterY": 45 }, { - "costumeName": "S-story-3", + "costumeName": "monkey1-b", "baseLayerID": -1, - "baseLayerMD5": "e96388c9197733bdadbad3ce014c0e59.svg", + "baseLayerMD5": "dc361fc5c8645e68c7bab9db3df6bc9d.svg", "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 23 + "rotationCenterX": 51, + "rotationCenterY": 46 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1.05, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -18088,11 +9885,11 @@ } }, { - "name": "T-Story", - "md5": "0333054ad39b919687a53924b4849be9.svg", + "name": "Monkey2", + "md5": "6e4de762dbd52cd2b6356694a9668211.svg", "type": "sprite", "tags": [ - "letters", + "animals", "drawing", "vector" ], @@ -18102,151 +9899,47 @@ 1 ], "json": { - "objName": "T-Story", + "objName": "Monkey2", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "chee chee", + "soundID": -1, + "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", + "sampleCount": 34560, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "T-story-1", + "costumeName": "monkey2-a", "baseLayerID": -1, - "baseLayerMD5": "0333054ad39b919687a53924b4849be9.svg", + "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 + "rotationCenterX": 68, + "rotationCenterY": 99 }, { - "costumeName": "T-story-2", + "costumeName": "monkey2-b", "baseLayerID": -1, - "baseLayerMD5": "eeb0fd25c9273747ac38766d1959ba2b.svg", + "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 + "rotationCenterX": 68, + "rotationCenterY": 99 }, { - "costumeName": "T-story-3", + "costumeName": "monkey2-c", "baseLayerID": -1, - "baseLayerMD5": "a9683d4946b08a76864a51bd21d811cb.svg", + "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterX": 68, + "rotationCenterY": 99 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.75, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -18256,159 +9949,96 @@ } }, { - "name": "U-Story", - "md5": "57a7bbdd3cd819e62363ef0f151bcea0.svg", + "name": "Mori", + "md5": "350a86adb24247003cc7e047bdba3c1d.png", "type": "sprite", "tags": [ - "letters", + "people", + "city", "drawing", - "vector" + "bitmap" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "U-Story", + "objName": "Mori", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "mori", + "baseLayerID": -1, + "baseLayerMD5": "350a86adb24247003cc7e047bdba3c1d.png", + "bitmapResolution": 2, + "rotationCenterX": 42, + "rotationCenterY": 160 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Mouse1", + "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Mouse1", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "U-story-1", - "baseLayerID": -1, - "baseLayerMD5": "57a7bbdd3cd819e62363ef0f151bcea0.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 - }, - { - "costumeName": "U-story-2", + "costumeName": "mouse1-a", "baseLayerID": -1, - "baseLayerMD5": "f442802f17225d6506ac9718810f179e.svg", + "baseLayerMD5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 + "rotationCenterX": 50, + "rotationCenterY": 27 }, { - "costumeName": "U-story-3", + "costumeName": "mouse1-b", "baseLayerID": -1, - "baseLayerMD5": "0779f03a6589c60352b1d4806a4a61c0.svg", + "baseLayerMD5": "f5e477a3f94fc98ba3cd927228405646.svg", "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 + "rotationCenterX": 65, + "rotationCenterY": 21 } ], "currentCostumeIndex": 0, @@ -18424,159 +10054,47 @@ } }, { - "name": "V-Story", - "md5": "3895ca10e7ae39bc513ba285d07cba69.svg", + "name": "Muffin", + "md5": "e00161f08c77d10e72e44b6e01243e63.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "V-Story", + "objName": "Muffin", "sounds": [ { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "V-story-1", - "baseLayerID": -1, - "baseLayerMD5": "3895ca10e7ae39bc513ba285d07cba69.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 - }, - { - "costumeName": "V-story-2", + "costumeName": "muffin-a", "baseLayerID": -1, - "baseLayerMD5": "03de7add77e31799ca568a9c671012b4.svg", + "baseLayerMD5": "e00161f08c77d10e72e44b6e01243e63.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 + "rotationCenterX": 85, + "rotationCenterY": 48 }, { - "costumeName": "V-story-3", + "costumeName": "muffin-b", "baseLayerID": -1, - "baseLayerMD5": "29befe20b105b69471f5507d025ec3e0.svg", + "baseLayerMD5": "fb60c3f8d6a892813299daa33b91df23.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 23 + "rotationCenterX": 85, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, @@ -18592,162 +10110,168 @@ } }, { - "name": "W-Story", - "md5": "e691a91fd45b0c302f3d954515ed164a.svg", + "name": "Nano", + "md5": "02c5433118f508038484bbc5b111e187.svg", "type": "sprite", "tags": [ - "letters", + "fantasy", + "space", "drawing", "vector" ], "info": [ 0, - 3, + 4, 1 ], "json": { - "objName": "W-Story", + "objName": "Nano", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" + "costumeName": "nano-a", + "baseLayerID": -1, + "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg", + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "costumeName": "nano-b", + "baseLayerID": -1, + "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg", + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" + "costumeName": "nano-c", + "baseLayerID": -1, + "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg", + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, + "costumeName": "nano-d", + "baseLayerID": -1, + "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg", + "rotationCenterX": 61, + "rotationCenterY": 60 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Neigh Pony", + "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Neigh Pony", + "sounds": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "soundName": "horse", + "soundID": -1, + "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", + "sampleCount": 14464, + "rate": 11025, "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, + } + ], + "costumes": [ { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "neigh pony", + "baseLayerID": -1, + "baseLayerMD5": "176c4fb4df80df899ca28a48bd1f0edf.svg", + "bitmapResolution": 1, + "rotationCenterX": 74, + "rotationCenterY": 78 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Octopus", + "md5": "bb68d2e29d8572ef9de06f8033e668d9.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "vector", + "underwater" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Octopus", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "W-story-1", - "baseLayerID": -1, - "baseLayerMD5": "e691a91fd45b0c302f3d954515ed164a.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 25 - }, - { - "costumeName": "W-story-2", + "costumeName": "octopus-a", "baseLayerID": -1, - "baseLayerMD5": "c0f48eb69cae4a611d3e7b7e06b0d1c1.svg", + "baseLayerMD5": "bb68d2e29d8572ef9de06f8033e668d9.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 25 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "W-story-3", + "costumeName": "octopus-b", "baseLayerID": -1, - "baseLayerMD5": "d1c922c9e9d53d2f6f36ca637e85de6b.svg", + "baseLayerMD5": "b52bd3bc12553bb31b1395516c3cec4d.svg", "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 24 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -18760,159 +10284,39 @@ } }, { - "name": "X-Story", - "md5": "2370b2a2fd153d18d1ad0ef64565b620.svg", + "name": "Orange", + "md5": "780ee2ef342f79a81b4c353725331138.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "X-Story", + "objName": "Orange", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "X-story-1", - "baseLayerID": -1, - "baseLayerMD5": "2370b2a2fd153d18d1ad0ef64565b620.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "X-story-2", - "baseLayerID": -1, - "baseLayerMD5": "f688425da41c2b7f80d4b8752de69bc9.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "X-story-3", + "costumeName": "orange", "baseLayerID": -1, - "baseLayerMD5": "ec90479a0ce3c7706f1916daef0f3c67.svg", + "baseLayerMD5": "780ee2ef342f79a81b4c353725331138.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterX": 19, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -18928,11 +10332,11 @@ } }, { - "name": "Y-Story", - "md5": "850386477f82d80fb0e79e5c675dd906.svg", + "name": "Orange2", + "md5": "89b11d2a404c3972b65743f743cc968a.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], @@ -18942,145 +10346,41 @@ 1 ], "json": { - "objName": "Y-Story", + "objName": "Orange2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Y-story-1", + "costumeName": "orange2-a", "baseLayerID": -1, - "baseLayerMD5": "850386477f82d80fb0e79e5c675dd906.svg", + "baseLayerMD5": "89b11d2a404c3972b65743f743cc968a.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 + "rotationCenterX": 49, + "rotationCenterY": 24 }, { - "costumeName": "Y-story-2", + "costumeName": "orange2-b", "baseLayerID": -1, - "baseLayerMD5": "1cfa161ae5d60ea163e4e0aa34d08f02.svg", + "baseLayerMD5": "5f7998e007dfa70e70bbd8d43199ebba.svg", "bitmapResolution": 1, - "rotationCenterX": 22, + "rotationCenterX": 49, "rotationCenterY": 27 }, { - "costumeName": "Y-story-3", + "costumeName": "orange2-c", "baseLayerID": -1, - "baseLayerMD5": "a1fc3c0fa304255364c0f98547e0e448.svg", + "baseLayerMD5": "466e9e2d62ee135a2dabd5593e6f8407.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterX": 49, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -19096,159 +10396,201 @@ } }, { - "name": "Z-Story", - "md5": "9a0a64558a53fde1af44dad5fb021199.svg", + "name": "Paddle", + "md5": "5cda5ed5ffabc3d06322551656427b06.svg", "type": "sprite", "tags": [ - "letters", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 1, + 0 + ], + "json": { + "objName": "Paddle", + "costumes": [ + { + "costumeName": "paddle", + "baseLayerID": -1, + "baseLayerMD5": "5cda5ed5ffabc3d06322551656427b06.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 8 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 0.85000000000001, + "direction": -90, + "rotationStyle": "none", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Palmtree", + "md5": "6d9c18c296edc8a01e4c611b573b5723.gif", + "type": "sprite", + "tags": [ + "things", + "nature", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, 1 ], "json": { - "objName": "Z-Story", + "objName": "Palmtree", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, + "costumeName": "palmtree", + "baseLayerID": -1, + "baseLayerMD5": "6d9c18c296edc8a01e4c611b573b5723.gif", + "rotationCenterX": 58, + "rotationCenterY": 100 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Parrot", + "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "flying", + "nature", + "vector" + ], + "info": [ + 0, + 2, + 1 + ], + "json": { + "objName": "Parrot", + "sounds": [ { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" + "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": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Parrot2", + "md5": "aba6f5539a5ac21863a3495d89947e66.svg", + "type": "sprite", + "tags": [ + "animals", + "drawing", + "flying", + "nature", + "vector" + ], + "info": [ + 0, + 2, + 2 + ], + "json": { + "objName": "Parrot2", + "sounds": [ { "soundName": "squawk", - "soundID": 7, + "soundID": -1, "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "bird", + "soundID": -1, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Z-story-1", - "baseLayerID": -1, - "baseLayerMD5": "9a0a64558a53fde1af44dad5fb021199.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "Z-story-2", + "costumeName": "parrot2-a", "baseLayerID": -1, - "baseLayerMD5": "e10b203e47bbb41edab78be59e628449.svg", + "baseLayerMD5": "aba6f5539a5ac21863a3495d89947e66.svg", "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 + "rotationCenterX": 106, + "rotationCenterY": 66 }, { - "costumeName": "Z-story-3", + "costumeName": "parrot2-b", "baseLayerID": -1, - "baseLayerMD5": "0788df7b1d9cf02dfdebc021d4f30ce4.svg", + "baseLayerMD5": "9f0aac24e6b600b542613ab5c1461ae8.svg", "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 23 + "rotationCenterX": 83, + "rotationCenterY": 13 } ], "currentCostumeIndex": 0, @@ -19264,22 +10606,22 @@ } }, { - "name": "Abby", - "md5": "afab2d2141e9811bd89e385e9628cb5f.svg", + "name": "Paul", + "md5": "4092b43b067ef01ce76a395637fe020a.gif", "type": "sprite", "tags": [ "people", "city", - "drawing", - "vector" + "photo", + "bitmap" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Abby", + "objName": "Paul", "sounds": [ { "soundName": "pop", @@ -19292,35 +10634,10 @@ ], "costumes": [ { - "costumeName": "abby-a", - "baseLayerID": -1, - "baseLayerMD5": "afab2d2141e9811bd89e385e9628cb5f.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 100 - }, - { - "costumeName": "abby-b", - "baseLayerID": -1, - "baseLayerMD5": "1e0116c7c2e5e80c679d0b33f1f5cfb7.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 100 - }, - { - "costumeName": "abby-c", - "baseLayerID": -1, - "baseLayerMD5": "b6e23922f23b49ddc6f62f675e77417c.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 100 - }, - { - "costumeName": "abby-d", + "costumeName": "paul", "baseLayerID": -1, - "baseLayerMD5": "2193cf08f74b8354f7c4fac37a06ea24.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, + "baseLayerMD5": "4092b43b067ef01ce76a395637fe020a.gif", + "rotationCenterX": 41, "rotationCenterY": 100 } ], @@ -19337,40 +10654,47 @@ } }, { - "name": "Airplane", - "md5": "58bcb130f226bda9017f1a443360a78a.png", + "name": "Pencil", + "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg", "type": "sprite", "tags": [ - "transportation", - "flying", - "city", - "photo", - "bitmap" + "things", + "drawing", + "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Airplane", + "objName": "Pencil", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "airplane2", + "costumeName": "pencil-a", "baseLayerID": -1, - "baseLayerMD5": "58bcb130f226bda9017f1a443360a78a.png", - "rotationCenterX": 100, - "rotationCenterY": 32 + "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, @@ -19386,14 +10710,13 @@ } }, { - "name": "Amon", - "md5": "8d508770c1991fe05959c9b3b5167036.gif", + "name": "Penguin1", + "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", "type": "sprite", "tags": [ - "people", - "flying", - "photo", - "bitmap" + "animals", + "drawing", + "vector" ], "info": [ 0, @@ -19401,7 +10724,7 @@ 1 ], "json": { - "objName": "Amon", + "objName": "Penguin1", "sounds": [ { "soundName": "pop", @@ -19414,11 +10737,11 @@ ], "costumes": [ { - "costumeName": "amon", + "costumeName": "penguin1", "baseLayerID": -1, - "baseLayerMD5": "8d508770c1991fe05959c9b3b5167036.gif", - "rotationCenterX": 87, - "rotationCenterY": 81 + "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg", + "rotationCenterX": 54, + "rotationCenterY": 61 } ], "currentCostumeIndex": 0, @@ -19434,171 +10757,24 @@ } }, { - "name": "Anina Hip-Hop", - "md5": "6d01c961449223f9e61dda9281100806.png", + "name": "Penguin1 Talk", + "md5": "35fec7aa5f60cca945fe0615413f1f08.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "animals", + "drawing", + "vector" ], "info": [ 0, - 13, + 2, 1 ], "json": { - "objName": "Anina Hip-Hop", + "objName": "Penguin1 Talk", "sounds": [ { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "anina stance", - "baseLayerID": -1, - "baseLayerMD5": "6d01c961449223f9e61dda9281100806.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 252 - }, - { - "costumeName": "anina top stand", - "baseLayerID": -1, - "baseLayerMD5": "34d6362cb4030d92be6fec73300f0aec.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 280 - }, - { - "costumeName": "anina top R step", - "baseLayerID": -1, - "baseLayerMD5": "0477f7105d02b9a902382eca080476dc.png", - "bitmapResolution": 2, - "rotationCenterX": 248, - "rotationCenterY": 272 - }, - { - "costumeName": "anina top L step", - "baseLayerID": -1, - "baseLayerMD5": "62a89d8c6f7680e342132fcde59b2a5d.png", - "bitmapResolution": 2, - "rotationCenterX": 228, - "rotationCenterY": 274 - }, - { - "costumeName": "anina top freeze", - "baseLayerID": -1, - "baseLayerMD5": "dd67565519bdebea1b931deb19621384.png", - "bitmapResolution": 2, - "rotationCenterX": 110, - "rotationCenterY": 268 - }, - { - "costumeName": "anina R cross", - "baseLayerID": -1, - "baseLayerMD5": "22f3ca23b2f0ac67f8ebc36a8c3116a0.png", - "bitmapResolution": 2, - "rotationCenterX": 126, - "rotationCenterY": 268 - }, - { - "costumeName": "anina pop front", - "baseLayerID": -1, - "baseLayerMD5": "c163f1002f61421816386e52522b9133.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 270 - }, - { - "costumeName": "anina pop down", - "baseLayerID": -1, - "baseLayerMD5": "e9e54ff1fa61c71507e25540d0326177.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 156 - }, - { - "costumeName": "anina pop left", - "baseLayerID": -1, - "baseLayerMD5": "9fda30f66d51b2ad5f6fe11d57e199d6.png", - "bitmapResolution": 2, - "rotationCenterX": 238, - "rotationCenterY": 266 - }, - { - "costumeName": "anina pop right", - "baseLayerID": -1, - "baseLayerMD5": "cc2594e9278494e82f725be34369f178.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 268 - }, - { - "costumeName": "anina pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "843bff4a5ee3d61fd8cbd419cb2797a3.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 274 - }, - { - "costumeName": "anina pop stand", - "baseLayerID": -1, - "baseLayerMD5": "de7cab2c8d567d49a5a1f378b5709bb4.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 276 - }, - { - "costumeName": "anina pop R arm", - "baseLayerID": -1, - "baseLayerMD5": "e7e1a86233b7ad28d6ee9970b152be20.png", - "bitmapResolution": 2, - "rotationCenterX": 88, - "rotationCenterY": 272 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Anna", - "md5": "23ab3e9be3be672fa2c43571e92b2b3e.png", - "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Anna", - "sounds": [ - { - "soundName": "pop", + "soundName": "pop", "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, @@ -19608,21 +10784,21 @@ ], "costumes": [ { - "costumeName": "anna-a", + "costumeName": "penguin1 talk-a", "baseLayerID": -1, - "baseLayerMD5": "23ab3e9be3be672fa2c43571e92b2b3e.png", - "rotationCenterX": 76, - "rotationCenterY": 87 + "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg", + "rotationCenterX": 48, + "rotationCenterY": 62 }, { - "costumeName": "anna-b", + "costumeName": "penguin1 talk-b", "baseLayerID": -1, - "baseLayerMD5": "25b8d4f7eae0add3bc24c20f5f17ada9.png", - "rotationCenterX": 57, - "rotationCenterY": 110 + "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg", + "rotationCenterX": 48, + "rotationCenterY": 61 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -19635,162 +10811,41 @@ } }, { - "name": "Anna Ode to Code", - "md5": "74b5e9c882deb81d88c175d548b8ff66.png", + "name": "Penguin2", + "md5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", "type": "sprite", "tags": [ - "people", - "dance", - "photo", - "bitmap" + "animals", + "drawing", + "vector" ], "info": [ + 0, 1, - 14, 1 ], "json": { - "objName": "Anna Ode to Code", - "scripts": [ - [ - 8, - 77.65, - [ - [ - "whenKeyPressed", - "space" - ], - [ - "nextCostume" - ] - ] - ] - ], + "objName": "Penguin2", "sounds": [ { - "soundName": "odesong-b", + "soundName": "pop", "soundID": -1, - "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", - "sampleCount": 212553, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "anna01", - "baseLayerID": -1, - "baseLayerMD5": "74b5e9c882deb81d88c175d548b8ff66.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 190 - }, - { - "costumeName": "anna02", - "baseLayerID": -1, - "baseLayerMD5": "ece557e1c4500b30fd0e22b0d693cf4c.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 260 - }, - { - "costumeName": "anna03", - "baseLayerID": -1, - "baseLayerMD5": "2e97d9d9d6bc1f174d3fc897638e8a46.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 242 - }, - { - "costumeName": "anna04", - "baseLayerID": -1, - "baseLayerMD5": "69da72a9a29181425944e7963eb4f32a.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 70 - }, - { - "costumeName": "anna05", - "baseLayerID": -1, - "baseLayerMD5": "1b396abf1336bceddb01166d975dad3b.png", - "bitmapResolution": 2, - "rotationCenterX": 134, - "rotationCenterY": 246 - }, - { - "costumeName": "anna06", - "baseLayerID": -1, - "baseLayerMD5": "d32ac2b2e9c8fa2f7b251275d8eec8c9.png", - "bitmapResolution": 2, - "rotationCenterX": 118, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07", - "baseLayerID": -1, - "baseLayerMD5": "c0961caabfa8545b6080ea7825d6fc66.png", - "bitmapResolution": 2, - "rotationCenterX": 124, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07b", - "baseLayerID": -1, - "baseLayerMD5": "c21f0ef20be25af3b7c1ed42e974c75f.png", - "bitmapResolution": 2, - "rotationCenterX": 202, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07c", - "baseLayerID": -1, - "baseLayerMD5": "54ed739e6ea31d128c319e8a3401af71.png", - "bitmapResolution": 2, - "rotationCenterX": 58, - "rotationCenterY": 218 - }, - { - "costumeName": "anna08", - "baseLayerID": -1, - "baseLayerMD5": "2d9bffdb6cda1ce0c77cfb3e001598f3.png", - "bitmapResolution": 2, - "rotationCenterX": 126, - "rotationCenterY": 212 - }, - { - "costumeName": "anna09", - "baseLayerID": -1, - "baseLayerMD5": "91f689627fa18d43ff6362ef872d90e2.png", - "bitmapResolution": 2, - "rotationCenterX": 130, - "rotationCenterY": 220 - }, - { - "costumeName": "anna10", - "baseLayerID": -1, - "baseLayerMD5": "eab5b5e2c4be253de024dd3deab68a66.png", - "bitmapResolution": 2, - "rotationCenterX": 148, - "rotationCenterY": 260 - }, - { - "costumeName": "anna11", - "baseLayerID": -1, - "baseLayerMD5": "859f95864d28fdb49d4170ce30fdd031.png", - "bitmapResolution": 2, - "rotationCenterX": 46, - "rotationCenterY": 278 - }, - { - "costumeName": "anna12", + "costumeName": "penguin2", "baseLayerID": -1, - "baseLayerMD5": "66133f695a23f669cc0fa6f06f275ab7.png", - "bitmapResolution": 2, - "rotationCenterX": 42, - "rotationCenterY": 206 + "baseLayerMD5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", + "rotationCenterX": 49, + "rotationCenterY": 79 } ], - "currentCostumeIndex": 13, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -19803,21 +10858,21 @@ } }, { - "name": "Apple", - "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg", + "name": "Penguin2 Talk", + "md5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", "type": "sprite", "tags": [ - "things", + "animals", "drawing", "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Apple", + "objName": "Penguin2 Talk", "sounds": [ { "soundName": "pop", @@ -19830,11 +10885,18 @@ ], "costumes": [ { - "costumeName": "apple", + "costumeName": "penguin2 talk-a", "baseLayerID": -1, - "baseLayerMD5": "831ccd4741a7a56d85f6698a21f4ca69.svg", - "rotationCenterX": 31, - "rotationCenterY": 31 + "baseLayerMD5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", + "rotationCenterX": 45, + "rotationCenterY": 79 + }, + { + "costumeName": "penguin2 talk-b", + "baseLayerID": -1, + "baseLayerMD5": "394e79f5f9a462064ece2a9a6606a07d.svg", + "rotationCenterX": 50, + "rotationCenterY": 78 } ], "currentCostumeIndex": 0, @@ -19850,21 +10912,34 @@ } }, { - "name": "Arrow1", - "md5": "62f8794dd120e9b4ead4d098d50fc64b.svg", + "name": "Penguin3", + "md5": "3f1173e00f664fca5f493b408e1e6d69.svg", "type": "sprite", "tags": [ - "things", + "animals", + "holiday", "drawing", "vector" ], "info": [ 0, - 4, + 3, 1 ], "json": { - "objName": "Arrow1", + "objName": "Penguin3", + "scripts": [ + [ + 142, + 432, + [ + [ + "setSizeTo:", + 100 + ] + ] + ] + ], "sounds": [ { "soundName": "pop", @@ -19877,36 +10952,28 @@ ], "costumes": [ { - "costumeName": "arrow1-a", - "baseLayerID": -1, - "baseLayerMD5": "62f8794dd120e9b4ead4d098d50fc64b.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 23 - }, - { - "costumeName": "arrow1-b", + "costumeName": "penguin3-a", "baseLayerID": -1, - "baseLayerMD5": "a157dc7e33d7c7a048af933de999e397.svg", + "baseLayerMD5": "3f1173e00f664fca5f493b408e1e6d69.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 23 + "rotationCenterX": 59, + "rotationCenterY": 98 }, { - "costumeName": "arrow1-c", + "costumeName": "penguin3-b", "baseLayerID": -1, - "baseLayerMD5": "d3b389e91f7beb22b2b1a80af09990ee.svg", + "baseLayerMD5": "814c2ea372e64b98d5de97b75773f54b.svg", "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 28 + "rotationCenterX": 57, + "rotationCenterY": 97 }, { - "costumeName": "arrow1-d", + "costumeName": "penguin3-c", "baseLayerID": -1, - "baseLayerMD5": "412717ff731e9f19003a5840054057eb.svg", + "baseLayerMD5": "e28cd8b76b23db393d06c3a057e2dc68.svg", "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 28 + "rotationCenterX": 64, + "rotationCenterY": 98 } ], "currentCostumeIndex": 0, @@ -19922,48 +10989,96 @@ } }, { - "name": "Avery", - "md5": "21393c9114c7d34b1df7ccd12c793672.svg", + "name": "Piano", + "md5": "a79a9794c290e5aa533230cc3d13795b.svg", "type": "sprite", "tags": [ - "people", - "city", + "things", + "music", "drawing", "vector" ], "info": [ 0, - 2, - 1 + 1, + 8 ], "json": { - "objName": "Avery", + "objName": "Piano", "sounds": [ { - "soundName": "pop", + "soundName": "C piano", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "d27ed8d953fe8f03c00f4d733d31d2cc.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "D piano", + "soundID": -1, + "md5": "51381ac422605ee8c7d64cfcbfd75efc.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "E piano", + "soundID": -1, + "md5": "c818fdfaf8a0efcb562e24e794700a57.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "F piano", + "soundID": -1, + "md5": "cdab3cce84f74ecf53e3941c6a003b5e.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "G piano", + "soundID": -1, + "md5": "42bb2ed28e7023e111b33220e1594a6f.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "A piano", + "soundID": -1, + "md5": "0727959edb2ea0525feed9b0c816991c.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "B piano", + "soundID": -1, + "md5": "86826c6022a46370ed1afae69f1ab1b9.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "soundName": "C2 piano", + "soundID": -1, + "md5": "75d7d2c9b5d40dd4e1cb268111abf1a2.wav", + "sampleCount": 44100, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "avery-a", - "baseLayerID": -1, - "baseLayerMD5": "21393c9114c7d34b1df7ccd12c793672.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 94 - }, - { - "costumeName": "avery-b", + "costumeName": "piano", "baseLayerID": -1, - "baseLayerMD5": "cc55f2f09599edc4ae0876e8b3d187d0.svg", + "baseLayerMD5": "a79a9794c290e5aa533230cc3d13795b.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 94 + "rotationCenterX": 142, + "rotationCenterY": 88 } ], "currentCostumeIndex": 0, @@ -19979,65 +11094,120 @@ } }, { - "name": "Avery Walking", - "md5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "name": "Piano-Electric", + "md5": "337368e789abc17beb1a2bacbb9d3bdc.svg", "type": "sprite", "tags": [ - "people", - "city", - "walking", + "things", + "music", "drawing", "vector" ], "info": [ 0, 4, - 1 + 8 ], "json": { - "objName": "Avery Walking", + "objName": "Piano-Electric", "sounds": [ { - "soundName": "pop", + "soundName": "C elec piano", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", + "sampleCount": 44100, + "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "avery walking-a", - "baseLayerID": -1, - "baseLayerMD5": "ed334e546806dfbf26d2591d7ddb12d0.svg", + "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", + "soundID": -1, + "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "keyboard-a", + "baseLayerID": -1, + "baseLayerMD5": "337368e789abc17beb1a2bacbb9d3bdc.svg", "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 95 + "rotationCenterX": 88, + "rotationCenterY": 24 }, { - "costumeName": "avery walking-b", + "costumeName": "keyboard-b", "baseLayerID": -1, - "baseLayerMD5": "c295731e8666ad2e1575fb4b4f82988d.svg", + "baseLayerMD5": "290216dfdf0cffea57743d91f130b2c7.svg", "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 102 + "rotationCenterX": 89, + "rotationCenterY": 24 }, { - "costumeName": "avery walking-c", + "costumeName": "keyboard-c", "baseLayerID": -1, - "baseLayerMD5": "597a834225c9949e419dff7db1bc2453.svg", + "baseLayerMD5": "750cbbcd66cb893cd5a66ee0a663e486.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 95 + "rotationCenterX": 89, + "rotationCenterY": 24 }, { - "costumeName": "avery walking-d", + "costumeName": "keyboard-d", "baseLayerID": -1, - "baseLayerMD5": "ce9622d11d24607eec7988196b38c3c6.svg", + "baseLayerMD5": "46b0d833ad845d88585fbd0cb4b070ee.svg", "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 101 + "rotationCenterX": 89, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -20045,7 +11215,7 @@ "scratchY": 0, "scale": 1, "direction": 90, - "rotationStyle": "leftRight", + "rotationStyle": "normal", "isDraggable": false, "indexInLibrary": 100000, "visible": true, @@ -20053,136 +11223,60 @@ } }, { - "name": "AZ Hip-Hop", - "md5": "e64363afc7f1e6951cb7967f50de2ba7.png", + "name": "Pico", + "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "bitmap" + "fantasy", + "space", + "drawing", + "vector" ], "info": [ 0, - 13, + 4, 1 ], "json": { - "objName": "AZ Hip-Hop", + "objName": "Pico", "sounds": [ { - "soundName": "dance celebrate", + "soundName": "pop", "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "AZ stance", - "baseLayerID": -1, - "baseLayerMD5": "e64363afc7f1e6951cb7967f50de2ba7.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 278 - }, - { - "costumeName": "AZ top stand", - "baseLayerID": -1, - "baseLayerMD5": "75b370524c92025cfa6f9071a6333e00.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 274 - }, - { - "costumeName": "AZ top R step", - "baseLayerID": -1, - "baseLayerMD5": "3769dbe6e19b0e19ebf9416ba8660b88.png", - "bitmapResolution": 2, - "rotationCenterX": 200, - "rotationCenterY": 270 - }, - { - "costumeName": "AZ top L step", - "baseLayerID": -1, - "baseLayerMD5": "3d618085bce1a68829fa2cd5deab7871.png", - "bitmapResolution": 2, - "rotationCenterX": 144, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ top freeze", - "baseLayerID": -1, - "baseLayerMD5": "ea33d5c631d8308b47685f1963becd4c.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 258 - }, - { - "costumeName": "AZ top R cross", - "baseLayerID": -1, - "baseLayerMD5": "44216804569454067953fdd5c6b72928.png", - "bitmapResolution": 2, - "rotationCenterX": 206, - "rotationCenterY": 252 - }, - { - "costumeName": "AZ pop front", - "baseLayerID": -1, - "baseLayerMD5": "97c14e52551ae65679d61de6c94f0ec8.png", - "bitmapResolution": 2, - "rotationCenterX": 72, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ pop down", - "baseLayerID": -1, - "baseLayerMD5": "2f8d07b568c8c67a0d211b5de09295d3.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 188 - }, - { - "costumeName": "AZ pop left", - "baseLayerID": -1, - "baseLayerMD5": "4e7e43a86f1f09f1194e3579e7f385f5.png", - "bitmapResolution": 2, - "rotationCenterX": 184, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ pop right", + "costumeName": "pico-a", "baseLayerID": -1, - "baseLayerMD5": "15a9d503613c649ca3a55829dbd98869.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 276 + "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "AZ pop L arm", + "costumeName": "pico-b", "baseLayerID": -1, - "baseLayerMD5": "0f6462025c20ac346a7f54164832d495.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 280 + "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg", + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "AZ pop stand", + "costumeName": "pico-c", "baseLayerID": -1, - "baseLayerMD5": "34b67b9e4db3aacbae735ade6a0539c2.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 280 + "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg", + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "AZ pop R arm", + "costumeName": "pico-d", "baseLayerID": -1, - "baseLayerMD5": "129472ac2779eb6bc2dd9bfbf0d33f56.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 278 + "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg", + "rotationCenterX": 55, + "rotationCenterY": 66 } ], "currentCostumeIndex": 0, @@ -20198,22 +11292,23 @@ } }, { - "name": "Ball", - "md5": "10117ddaefa98d819f2b1df93805622f.svg", + "name": "Pico walking", + "md5": "8eab5fe20dd249bf22964298b1d377eb.svg", "type": "sprite", "tags": [ - "things", + "fantasy", + "space", "drawing", - "sports", + "walking", "vector" ], "info": [ 0, - 5, + 4, 1 ], "json": { - "objName": "Ball", + "objName": "Pico walking", "sounds": [ { "soundName": "pop", @@ -20226,44 +11321,32 @@ ], "costumes": [ { - "costumeName": "ball-a", - "baseLayerID": -1, - "baseLayerMD5": "10117ddaefa98d819f2b1df93805622f.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 - }, - { - "costumeName": "ball-b", + "costumeName": "Pico walk1", "baseLayerID": -1, - "baseLayerMD5": "6e6330cad7750ea7e9dc88402661deb8.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "baseLayerMD5": "8eab5fe20dd249bf22964298b1d377eb.svg", + "rotationCenterX": 54, + "rotationCenterY": 71 }, { - "costumeName": "ball-c", + "costumeName": "Pico walk2", "baseLayerID": -1, - "baseLayerMD5": "bb45ed5db278f15c17c012c34a6b160f.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "baseLayerMD5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg", + "rotationCenterX": 54, + "rotationCenterY": 71 }, { - "costumeName": "ball-d", + "costumeName": "Pico walk3", "baseLayerID": -1, - "baseLayerMD5": "5d494659deae5c0de06b5885f5524276.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "baseLayerMD5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg", + "rotationCenterX": 54, + "rotationCenterY": 70 }, { - "costumeName": "ball-e", + "costumeName": "Pico walk4", "baseLayerID": -1, - "baseLayerMD5": "e80c98bc62fd32e8df81642af11ffb1a.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "baseLayerMD5": "2582d012d57bca59bc0315c5c5954958.svg", + "rotationCenterX": 54, + "rotationCenterY": 70 } ], "currentCostumeIndex": 0, @@ -20279,13 +11362,13 @@ } }, { - "name": "Ball-Soccer", - "md5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", + "name": "Planet2", + "md5": "978784738c1d9dd4b1d397fd18bdf406.svg", "type": "sprite", "tags": [ "things", + "space", "drawing", - "sports", "vector" ], "info": [ @@ -20294,7 +11377,7 @@ 1 ], "json": { - "objName": "Ball-Soccer", + "objName": "Planet2", "sounds": [ { "soundName": "pop", @@ -20307,12 +11390,11 @@ ], "costumes": [ { - "costumeName": "ball-soccer", + "costumeName": "planet2", "baseLayerID": -1, - "baseLayerMD5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 34 + "baseLayerMD5": "978784738c1d9dd4b1d397fd18bdf406.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -20328,22 +11410,23 @@ } }, { - "name": "Ballerina", - "md5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", + "name": "Prince", + "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg", "type": "sprite", "tags": [ "people", - "dance", + "fantasy", + "castle", "drawing", "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Ballerina", + "objName": "Prince", "sounds": [ { "soundName": "pop", @@ -20356,35 +11439,14 @@ ], "costumes": [ { - "costumeName": "ballerina-a", - "baseLayerID": -1, - "baseLayerMD5": "6051bb7008cf17c8853a6f81f04c8a0f.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-b", - "baseLayerID": -1, - "baseLayerMD5": "8bc5e47fb1439e29e11e9e3f2e20c6de.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-c", - "baseLayerID": -1, - "baseLayerMD5": "6d3a07761b294f705987b0af58f8e335.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-d", + "costumeName": "prince", "baseLayerID": -1, - "baseLayerMD5": "c3164795edf39e436272f425b4f5e487.svg", + "baseLayerMD5": "a760bed1cfc28a30b2dc7fd045c90792.svg", "rotationCenterX": 75, "rotationCenterY": 75 } ], - "currentCostumeIndex": 3, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -20397,22 +11459,23 @@ } }, { - "name": "Balloon1", - "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", + "name": "Princess", + "md5": "75c96829e4b9f89378dfde0dee78db5f.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "people", + "fantasy", + "castle", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Balloon1", + "objName": "Princess", "sounds": [ { "soundName": "pop", @@ -20425,31 +11488,14 @@ ], "costumes": [ { - "costumeName": "balloon1-a", - "baseLayerID": -1, - "baseLayerMD5": "bc96a1fb5fe794377acd44807e421ce2.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 94 - }, - { - "costumeName": "balloon1-b", - "baseLayerID": -1, - "baseLayerMD5": "d7bb51d9c38af6314bd2b4058d2a592d.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 94 - }, - { - "costumeName": "balloon1-c", + "costumeName": "princess", "baseLayerID": -1, - "baseLayerMD5": "247cef27b665d77d9efaca69327cae77.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 94 + "baseLayerMD5": "75c96829e4b9f89378dfde0dee78db5f.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], - "currentCostumeIndex": 2, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -20462,28 +11508,41 @@ } }, { - "name": "Bananas", - "md5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "name": "Rainbow", + "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", "type": "sprite", "tags": [ "things", + "flying", + "city", "drawing", "vector" ], "info": [ 0, 1, - 0 + 1 ], "json": { - "objName": "Bananas", + "objName": "Rainbow", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], "costumes": [ { - "costumeName": "bananas", + "costumeName": "rainbow", "baseLayerID": -1, - "baseLayerMD5": "40bb8a1afe88cec78254f6fcfee98242.svg", - "rotationCenterX": 36, - "rotationCenterY": 37 + "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, @@ -20499,14 +11558,14 @@ } }, { - "name": "Baseball", - "md5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", + "name": "Referee", + "md5": "b510bc924622795216154727e18dd38e.gif", "type": "sprite", "tags": [ - "things", + "people", "sports", - "drawing", - "vector" + "photo", + "bitmap" ], "info": [ 0, @@ -20514,7 +11573,7 @@ 1 ], "json": { - "objName": "Baseball", + "objName": "Referee", "sounds": [ { "soundName": "pop", @@ -20527,11 +11586,11 @@ ], "costumes": [ { - "costumeName": "baseball", + "costumeName": "referee", "baseLayerID": -1, - "baseLayerMD5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", - "rotationCenterX": 34, - "rotationCenterY": 31 + "baseLayerMD5": "b510bc924622795216154727e18dd38e.gif", + "rotationCenterX": 41, + "rotationCenterY": 100 } ], "currentCostumeIndex": 0, @@ -20547,30 +11606,40 @@ } }, { - "name": "Basketball", - "md5": "ac3432618ac868309f502024aa78423c.svg", + "name": "Reindeer", + "md5": "0fff0b181cc4d9250b5b985cc283b049.svg", "type": "sprite", "tags": [ - "things", - "sports", + "fantasy", + "holiday", "drawing", "vector" ], "info": [ 0, 1, - 0 + 1 ], "json": { - "objName": "Basketball", + "objName": "Reindeer", + "sounds": [ + { + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, + "format": "" + } + ], "costumes": [ { - "costumeName": "basketball", + "costumeName": "reindeer", "baseLayerID": -1, - "baseLayerMD5": "ac3432618ac868309f502024aa78423c.svg", + "baseLayerMD5": "0fff0b181cc4d9250b5b985cc283b049.svg", "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 39 + "rotationCenterX": 39, + "rotationCenterY": 70 } ], "currentCostumeIndex": 0, @@ -20586,96 +11655,88 @@ } }, { - "name": "Bass", - "md5": "bdbd2876847e54309a5ff3ee0895d724.svg", + "name": "Robot1", + "md5": "882919259f26462d74106e11d7c7e5c0.svg", "type": "sprite", "tags": [ - "things", - "music", + "fantasy", "drawing", + "space", "vector" ], "info": [ 0, 1, - 8 + 1 ], "json": { - "objName": "Bass", + "objName": "Robot1", "sounds": [ { - "soundName": "C bass", - "soundID": -1, - "md5": "c3566ec797b483acde28f790994cc409.wav", - "sampleCount": 44608, - "rate": 22050, - "format": "" - }, - { - "soundName": "D bass", - "soundID": -1, - "md5": "5a3ae8a2665f50fdc38cc301fbac79ba.wav", - "sampleCount": 40192, - "rate": 22050, - "format": "" - }, - { - "soundName": "E bass", - "soundID": -1, - "md5": "0657e39bae81a232b01a18f727d3b891.wav", - "sampleCount": 36160, - "rate": 22050, - "format": "" - }, - { - "soundName": "F bass", + "soundName": "pop", "soundID": -1, - "md5": "ea21bdae86f70d60b28f1dddcf50d104.wav", - "sampleCount": 34368, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "G bass", - "soundID": -1, - "md5": "05c192194e8f1944514dce3833e33439.wav", - "sampleCount": 30976, - "rate": 22050, - "format": "" - }, - { - "soundName": "A bass", - "soundID": -1, - "md5": "c04ebf21e5e19342fa1535e4efcdb43b.wav", - "sampleCount": 28160, - "rate": 22050, - "format": "" - }, - { - "soundName": "B bass", - "soundID": -1, - "md5": "e31dcaf7bcdf58ac2a26533c48936c45.wav", - "sampleCount": 25792, - "rate": 22050, - "format": "" - }, + "costumeName": "robot1", + "baseLayerID": -1, + "baseLayerMD5": "882919259f26462d74106e11d7c7e5c0.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": 0, + "scratchY": 0, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 100000, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Rocks", + "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", + "type": "sprite", + "tags": [ + "things", + "nature", + "drawing", + "vector" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Rocks", + "sounds": [ { - "soundName": "C2 bass", + "soundName": "pop", "soundID": -1, - "md5": "667d6c527b79321d398e85b526f15b99.wav", - "sampleCount": 24128, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bass", + "costumeName": "rocks", "baseLayerID": -1, - "baseLayerMD5": "bdbd2876847e54309a5ff3ee0895d724.svg", + "baseLayerMD5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 110 + "rotationCenterX": 59, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, @@ -20691,22 +11752,22 @@ } }, { - "name": "Bat1", - "md5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", + "name": "Rory", + "md5": "7cca95c0a56646dd65771247ea288612.png", "type": "sprite", "tags": [ - "animals", + "people", + "city", "drawing", - "flying", - "vector" + "bitmap" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Bat1", + "objName": "Rory", "sounds": [ { "soundName": "pop", @@ -20719,18 +11780,12 @@ ], "costumes": [ { - "costumeName": "bat1-a ", - "baseLayerID": -1, - "baseLayerMD5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "bat1-b ", + "costumeName": "rory", "baseLayerID": -1, - "baseLayerMD5": "f127434672b872a902346ef3c1af45f2.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "7cca95c0a56646dd65771247ea288612.png", + "bitmapResolution": 2, + "rotationCenterX": 82, + "rotationCenterY": 160 } ], "currentCostumeIndex": 0, @@ -20746,14 +11801,14 @@ } }, { - "name": "Bat2", - "md5": "647d4bd53163f94a7dabf623ccab7fd3.svg", + "name": "Ruby", + "md5": "c30210e8f719c3a4d2c7cc6917a39300.png", "type": "sprite", "tags": [ - "animals", + "people", + "city", "drawing", - "flying", - "vector" + "bitmap" ], "info": [ 0, @@ -20761,7 +11816,7 @@ 1 ], "json": { - "objName": "Bat2", + "objName": "Ruby", "sounds": [ { "soundName": "pop", @@ -20774,18 +11829,20 @@ ], "costumes": [ { - "costumeName": "bat2-a ", + "costumeName": "ruby-a", "baseLayerID": -1, - "baseLayerMD5": "647d4bd53163f94a7dabf623ccab7fd3.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "c30210e8f719c3a4d2c7cc6917a39300.png", + "bitmapResolution": 2, + "rotationCenterX": 54, + "rotationCenterY": 172 }, { - "costumeName": "bat2-b ", + "costumeName": "ruby-b", "baseLayerID": -1, - "baseLayerMD5": "8aa1d20e4f7761becbe9bafa75290465.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "fc15fdbcc535473f6140cab28197f3be.png", + "bitmapResolution": 2, + "rotationCenterX": 76, + "rotationCenterY": 142 } ], "currentCostumeIndex": 0, @@ -20801,14 +11858,13 @@ } }, { - "name": "Beachball", - "md5": "87d64cab74c64b31498cc85f07510ee4.svg", + "name": "Sailboat", + "md5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", "type": "sprite", "tags": [ - "things", - "sports", - "drawing", - "vector" + "transportation", + "photo", + "bitmap" ], "info": [ 0, @@ -20816,7 +11872,7 @@ 1 ], "json": { - "objName": "Beachball", + "objName": "Sailboat", "sounds": [ { "soundName": "pop", @@ -20829,11 +11885,11 @@ ], "costumes": [ { - "costumeName": "beachball", + "costumeName": "sail-boat", "baseLayerID": -1, - "baseLayerMD5": "87d64cab74c64b31498cc85f07510ee4.svg", - "rotationCenterX": 34, - "rotationCenterY": 33 + "baseLayerMD5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", + "rotationCenterX": 112, + "rotationCenterY": 91 } ], "currentCostumeIndex": 0, @@ -20849,48 +11905,39 @@ } }, { - "name": "Bear1", - "md5": "598722f70e86e6f9b23ef97680baaa9c.svg", + "name": "Sam", + "md5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", "type": "sprite", "tags": [ - "animals", - "holiday", - "drawing", - "vector" + "people", + "city", + "photo", + "bitmap" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Bear1", + "objName": "Sam", "sounds": [ { - "soundName": "plunge", + "soundName": "pop", "soundID": -1, - "md5": "c09455ee9da0e7eeead42d4e73c2555d.wav", - "sampleCount": 22400, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bear1-a", - "baseLayerID": -1, - "baseLayerMD5": "598722f70e86e6f9b23ef97680baaa9c.svg", - "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 93 - }, - { - "costumeName": "bear1-b", + "costumeName": "sam", "baseLayerID": -1, - "baseLayerMD5": "76ceb0de4409f42713b50cbc1fb45af5.svg", - "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 93 + "baseLayerMD5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", + "rotationCenterX": 58, + "rotationCenterY": 90 } ], "currentCostumeIndex": 0, @@ -20906,48 +11953,104 @@ } }, { - "name": "Bear2", - "md5": "3eb8e16a983ff23c418374389c81bd30.svg", + "name": "Saxophone", + "md5": "a09b114b0652006ac66def94548073a9.svg", "type": "sprite", "tags": [ - "animals", - "holiday", + "things", + "music", "drawing", "vector" ], "info": [ 0, 2, - 1 + 8 ], "json": { - "objName": "Bear2", + "objName": "Saxophone", "sounds": [ { - "soundName": "meow", + "soundName": "C sax", "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "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": "bear2-a", + "costumeName": "saxophone-a", "baseLayerID": -1, - "baseLayerMD5": "3eb8e16a983ff23c418374389c81bd30.svg", + "baseLayerMD5": "a09b114b0652006ac66def94548073a9.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 42 + "rotationCenterX": 69, + "rotationCenterY": 80 }, { - "costumeName": "bear2-b", + "costumeName": "saxophone-b", "baseLayerID": -1, - "baseLayerMD5": "12bb6960ac01b65ae9b5e5e7f79700ac.svg", + "baseLayerMD5": "366c42cc65497f5007c9377a2d4d854b.svg", "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 42 + "rotationCenterX": 69, + "rotationCenterY": 80 } ], "currentCostumeIndex": 0, @@ -20963,11 +12066,13 @@ } }, { - "name": "Beetle", - "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "name": "Scarf1", + "md5": "9db18d2a2b3c9859654fc1b4832e6076.svg", "type": "sprite", "tags": [ - "animals", + "dress-up", + "things", + "holiday", "drawing", "vector" ], @@ -20977,7 +12082,7 @@ 1 ], "json": { - "objName": "Beetle", + "objName": "Scarf1", "sounds": [ { "soundName": "pop", @@ -20990,17 +12095,18 @@ ], "costumes": [ { - "costumeName": "beetle", + "costumeName": "scarf1", "baseLayerID": -1, - "baseLayerMD5": "e1ce8f153f011fdd52486c91c6ed594d.svg", - "rotationCenterX": 43, - "rotationCenterY": 38 + "baseLayerMD5": "9db18d2a2b3c9859654fc1b4832e6076.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -21010,10 +12116,11 @@ } }, { - "name": "Bell", - "md5": "f35056c772395455d703773657e1da6e.svg", + "name": "Scarf2", + "md5": "ce66662165e2756070f1b12e0a7cb5db.svg", "type": "sprite", "tags": [ + "dress-up", "things", "holiday", "drawing", @@ -21022,36 +12129,28 @@ "info": [ 0, 1, - 2 + 1 ], "json": { - "objName": "Bell", + "objName": "Scarf2", "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": "scarf2", "baseLayerID": -1, - "baseLayerMD5": "f35056c772395455d703773657e1da6e.svg", + "baseLayerMD5": "ce66662165e2756070f1b12e0a7cb5db.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 69 + "rotationCenterX": 23, + "rotationCenterY": 16 } ], "currentCostumeIndex": 0, @@ -21060,55 +12159,45 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Bells", - "md5": "1f151bee966df3f0c41138941713280e.svg", + "name": "Scratch Logo", + "md5": "978b16d68fa7834dfb327fa3e2c4ba3b.svg", "type": "sprite", "tags": [ "things", - "holiday", - "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Bells", + "objName": "Scratch Logo", "sounds": [ { - "soundName": "xylo1", + "soundName": "meow", "soundID": -1, - "md5": "5c6964021197fdd4ff46a0f107e6d624.wav", - "sampleCount": 238995, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, - "format": "adpcm" + "format": "" } ], "costumes": [ { - "costumeName": "bells-a", - "baseLayerID": -1, - "baseLayerMD5": "1f151bee966df3f0c41138941713280e.svg", - "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 51 - }, - { - "costumeName": "bells-b", + "costumeName": "scratch logo", "baseLayerID": -1, - "baseLayerMD5": "5b3879a162881aed93169bf0a6680f45.svg", + "baseLayerMD5": "978b16d68fa7834dfb327fa3e2c4ba3b.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 31 + "rotationCenterX": 85, + "rotationCenterY": 26 } ], "currentCostumeIndex": 0, @@ -21124,53 +12213,59 @@ } }, { - "name": "Bowl", - "md5": "86f616639846f06fef29931e6b9b59de.svg", + "name": "Shark", + "md5": "7c0a907eae79462f69f8e2af8e7df828.svg", "type": "sprite", "tags": [ - "things", + "animals", "drawing", + "underwater", "vector" ], "info": [ 0, - 1, - 2 + 3, + 1 ], "json": { - "objName": "Bowl", + "objName": "Shark", "sounds": [ { - "soundName": "boing", - "soundID": -1, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "water drop", + "soundName": "pop", "soundID": -1, - "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", - "sampleCount": 8136, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "bowl-a", + "costumeName": "shark-a ", "baseLayerID": -1, - "baseLayerMD5": "86f616639846f06fef29931e6b9b59de.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 15 + "baseLayerMD5": "7c0a907eae79462f69f8e2af8e7df828.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "shark-b ", + "baseLayerID": -1, + "baseLayerMD5": "cff9ae87a93294693a0650b38a7a33d2.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "shark-c ", + "baseLayerID": -1, + "baseLayerMD5": "afeae3f998598424f7c50918507f6ce6.svg", + "rotationCenterX": 77, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1.2500000000000002, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -21180,8 +12275,8 @@ } }, { - "name": "Bowtie", - "md5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "name": "Shirt", + "md5": "dbb0eaa9d7af0f5971afdee0192c8b51.svg", "type": "sprite", "tags": [ "dress-up", @@ -21195,7 +12290,7 @@ 1 ], "json": { - "objName": "Bowtie", + "objName": "Shirt", "sounds": [ { "soundName": "pop", @@ -21208,26 +12303,26 @@ ], "costumes": [ { - "costumeName": "bowtie-a", + "costumeName": "shirt-a", "baseLayerID": -1, - "baseLayerMD5": "534d9924d2f9bfe240f041e3ce55ccf5.svg", + "baseLayerMD5": "dbb0eaa9d7af0f5971afdee0192c8b51.svg", "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 4 + "rotationCenterX": 39, + "rotationCenterY": 48 }, { - "costumeName": "bowtie-b", + "costumeName": "shirt-b", "baseLayerID": -1, - "baseLayerMD5": "8be1e90e19cd1faced8a2e83c2b5c90d.svg", + "baseLayerMD5": "92d009fb104990da9798378ae5e4e1cb.svg", "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 4 + "rotationCenterX": 48, + "rotationCenterY": 48 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1.6, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": true, @@ -21237,23 +12332,22 @@ } }, { - "name": "Breakdancer1", - "md5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", + "name": "Shirt2", + "md5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", + "dress-up", + "things", "drawing", - "bitmap" + "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Breakdancer1", + "objName": "Shirt2", "sounds": [ { "soundName": "pop", @@ -21266,147 +12360,59 @@ ], "costumes": [ { - "costumeName": "breakdancer1-a", - "baseLayerID": -1, - "baseLayerMD5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", - "rotationCenterX": 113, - "rotationCenterY": 90 - }, - { - "costumeName": "breakdancer1-b", + "costumeName": "shirt2-a", "baseLayerID": -1, - "baseLayerMD5": "84bcb1be206e8653a7d97549733c3db5.png", - "rotationCenterX": 30, - "rotationCenterY": 90 + "baseLayerMD5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 48 }, { - "costumeName": "breakdancer1-c", + "costumeName": "shirt2-a2", "baseLayerID": -1, - "baseLayerMD5": "b345babf9f78b5e88a288a4b13a7ca29.png", - "rotationCenterX": 35, - "rotationCenterY": 90 + "baseLayerMD5": "5b78ab09592126b6bbe2d4907d203909.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 48 } ], - "currentCostumeIndex": 2, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Buildings", - "md5": "d713270e235851e5962becd73a951771.svg", + "name": "Shirt Blouse", + "md5": "918a507af6bbae9e7f36f0d949900838.svg", "type": "sprite", "tags": [ - "city", - "flying", + "dress-up", "things", "drawing", "vector" ], "info": [ 0, - 10, - 1 + 1, + 0 ], "json": { - "objName": "Buildings", - "sounds": [ + "objName": "Shirt Blouse", + "costumes": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "building-a", - "baseLayerID": -1, - "baseLayerMD5": "d713270e235851e5962becd73a951771.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 30 - }, - { - "costumeName": "building-b", - "baseLayerID": -1, - "baseLayerMD5": "8c2d59c50a97d33b096f629258f02be6.svg", - "bitmapResolution": 1, - "rotationCenterX": 46, - "rotationCenterY": -11 - }, - { - "costumeName": "building-c", - "baseLayerID": -1, - "baseLayerMD5": "7f3f51f495c39809bed95991dfa1f80d.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 17 - }, - { - "costumeName": "building-d", - "baseLayerID": -1, - "baseLayerMD5": "61ba83d6bded299dd91168eb24cd379f.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": -10 - }, - { - "costumeName": "building-e", - "baseLayerID": -1, - "baseLayerMD5": "1beeb8f034a1128c9a799297b0b7fc26.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 55 - }, - { - "costumeName": "building-f", - "baseLayerID": -1, - "baseLayerMD5": "451e0a565e95d945fe2addfe609ee9df.svg", - "bitmapResolution": 1, - "rotationCenterX": 41, - "rotationCenterY": 27 - }, - { - "costumeName": "building-g", - "baseLayerID": -1, - "baseLayerMD5": "58b3c9b7a41dde698fa2b427b502c1fa.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": -65 - }, - { - "costumeName": "building-h", - "baseLayerID": -1, - "baseLayerMD5": "e952c8b14eeac894302d07d37a45ed99.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 136 - }, - { - "costumeName": "building-i", - "baseLayerID": -1, - "baseLayerMD5": "b00b1123e3bfcb600242528d059ffcfb.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": -12 - }, - { - "costumeName": "building-j", + "costumeName": "shirt blouse", "baseLayerID": -1, - "baseLayerMD5": "e08fd1a7397efcfe0e3691f945693cb4.svg", + "baseLayerMD5": "918a507af6bbae9e7f36f0d949900838.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 33 + "rotationCenterX": 35, + "rotationCenterY": 28 } ], "currentCostumeIndex": 0, @@ -21415,29 +12421,29 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Bus", - "md5": "66895930177178ea01d9e610917f8acf.png", + "name": "Shirt Collar", + "md5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", "type": "sprite", "tags": [ - "transportation", - "city", - "photo", - "bitmap" + "dress-up", + "things", + "drawing", + "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Bus", + "objName": "Shirt Collar", "sounds": [ { "soundName": "pop", @@ -21450,11 +12456,28 @@ ], "costumes": [ { - "costumeName": "bus", + "costumeName": "shirt collar-a", "baseLayerID": -1, - "baseLayerMD5": "66895930177178ea01d9e610917f8acf.png", - "rotationCenterX": 120, - "rotationCenterY": 35 + "baseLayerMD5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 57 + }, + { + "costumeName": "shirt collar-b", + "baseLayerID": -1, + "baseLayerMD5": "f1b20c3350e8a7e92a2fb1925ad4158b.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 57 + }, + { + "costumeName": "shirt collar-c", + "baseLayerID": -1, + "baseLayerMD5": "5f04b99416a794e04d0855f446780f18.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 57 } ], "currentCostumeIndex": 0, @@ -21463,53 +12486,37 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly1", - "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg", + "name": "Shirt-T", + "md5": "5d7fa4f1788f03d2962f1624d6eac800.svg", "type": "sprite", "tags": [ - "animals", + "dress-up", + "things", "drawing", - "flying", "vector" ], "info": [ 0, - 2, - 1 + 1, + 0 ], "json": { - "objName": "Butterfly1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], + "objName": "Shirt-T", "costumes": [ { - "costumeName": "butterfly1-a", - "baseLayerID": -1, - "baseLayerMD5": "836d4cc7889f4a1cbcb0303934f31f79.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "butterfly1-b ", + "costumeName": "shirt-t", "baseLayerID": -1, - "baseLayerMD5": "55dd0671a359d7c35f7b78f4176660e8.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "5d7fa4f1788f03d2962f1624d6eac800.svg", + "bitmapResolution": 1, + "rotationCenterX": 39, + "rotationCenterY": 28 } ], "currentCostumeIndex": 0, @@ -21518,20 +12525,20 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly2", - "md5": "a0216895beade6afc6d42bd5bb43faea.svg", + "name": "Shoes1", + "md5": "ffab4cc284070b50ac317e515f59f7d8.svg", "type": "sprite", "tags": [ - "animals", + "dress-up", + "things", "drawing", - "flying", "vector" ], "info": [ @@ -21540,7 +12547,7 @@ 1 ], "json": { - "objName": "Butterfly2", + "objName": "Shoes1", "sounds": [ { "soundName": "pop", @@ -21553,11 +12560,12 @@ ], "costumes": [ { - "costumeName": "butterfly2 ", + "costumeName": "shoes1", "baseLayerID": -1, - "baseLayerMD5": "a0216895beade6afc6d42bd5bb43faea.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "ffab4cc284070b50ac317e515f59f7d8.svg", + "bitmapResolution": 1, + "rotationCenterX": 36, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -21566,20 +12574,20 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly3", - "md5": "8907a43cf08b0a9134969023be2074c5.svg", + "name": "Shoes2", + "md5": "1dc5d568d98405c370b91a230397a7f9.svg", "type": "sprite", "tags": [ - "animals", + "dress-up", + "things", "drawing", - "flying", "vector" ], "info": [ @@ -21588,7 +12596,7 @@ 1 ], "json": { - "objName": "Butterfly3", + "objName": "Shoes2", "sounds": [ { "soundName": "pop", @@ -21601,11 +12609,12 @@ ], "costumes": [ { - "costumeName": "butterfly3 ", + "costumeName": "shoes2", "baseLayerID": -1, - "baseLayerMD5": "8907a43cf08b0a9134969023be2074c5.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "1dc5d568d98405c370b91a230397a7f9.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 8 } ], "currentCostumeIndex": 0, @@ -21614,18 +12623,19 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Button1", - "md5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", + "name": "Singer1", + "md5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", "type": "sprite", "tags": [ - "things", + "people", + "music", "drawing", "vector" ], @@ -21635,7 +12645,7 @@ 1 ], "json": { - "objName": "Button1", + "objName": "Singer1", "sounds": [ { "soundName": "pop", @@ -21648,11 +12658,11 @@ ], "costumes": [ { - "costumeName": "button1", + "costumeName": "Singer1", "baseLayerID": -1, - "baseLayerMD5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -21668,21 +12678,23 @@ } }, { - "name": "Button2", - "md5": "c0051ff23e9aae78295964206793c1e3.svg", + "name": "Skates", + "md5": "00e5e173400662875a26bb7d6556346a.svg", "type": "sprite", "tags": [ + "dress-up", "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button2", + "objName": "Skates", "sounds": [ { "soundName": "pop", @@ -21695,24 +12707,18 @@ ], "costumes": [ { - "costumeName": "button2-a", - "baseLayerID": -1, - "baseLayerMD5": "c0051ff23e9aae78295964206793c1e3.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - }, - { - "costumeName": "button2-b", + "costumeName": "skates", "baseLayerID": -1, - "baseLayerMD5": "712a561dc0ad66e348b8247e566b50ef.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "00e5e173400662875a26bb7d6556346a.svg", + "bitmapResolution": 1, + "rotationCenterX": 44, + "rotationCenterY": -21 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -21722,45 +12728,97 @@ } }, { - "name": "Button3", - "md5": "ffb2a9c21084c58fdb677c8d12a97519.svg", + "name": "SL Hip-Hop", + "md5": "2d2b577a12a51aa4448ad3e7e2a07079.png", "type": "sprite", "tags": [ - "things", - "drawing", - "vector" + "people", + "dance", + "city", + "photo", + "bitmap" ], "info": [ 0, - 2, + 8, 1 ], "json": { - "objName": "Button3", + "objName": "SL Hip-Hop", "sounds": [ { - "soundName": "pop", + "soundName": "dance celebrate", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" + "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", + "sampleCount": 176401, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "button3-a", + "costumeName": "sl top stand", "baseLayerID": -1, - "baseLayerMD5": "ffb2a9c21084c58fdb677c8d12a97519.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "2d2b577a12a51aa4448ad3e7e2a07079.png", + "bitmapResolution": 2, + "rotationCenterX": 64, + "rotationCenterY": 233 }, { - "costumeName": "button3-b", + "costumeName": "sl top R leg", "baseLayerID": -1, - "baseLayerMD5": "7a9ccb55e4da36f48811ab125d2492e0.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "ba01e9c4448285b7b8a63e98d89ac1d7.png", + "bitmapResolution": 2, + "rotationCenterX": 54, + "rotationCenterY": 230 + }, + { + "costumeName": "sl top L leg", + "baseLayerID": -1, + "baseLayerMD5": "b274db2a4fa913555dae028f327e7423.png", + "bitmapResolution": 2, + "rotationCenterX": 149, + "rotationCenterY": 245 + }, + { + "costumeName": "sl top ready", + "baseLayerID": -1, + "baseLayerMD5": "3df3afb72314807fc6c58075da124b84.png", + "bitmapResolution": 2, + "rotationCenterX": 74, + "rotationCenterY": 198 + }, + { + "costumeName": "sl top L cross", + "baseLayerID": -1, + "baseLayerMD5": "f26ea2f0d0baaa5aaed3cd96d7843206.png", + "bitmapResolution": 2, + "rotationCenterX": 50, + "rotationCenterY": 214 + }, + { + "costumeName": "sl top R cross", + "baseLayerID": -1, + "baseLayerMD5": "b46163522a53150fdb6a44461738e9ae.png", + "bitmapResolution": 2, + "rotationCenterX": 110, + "rotationCenterY": 200 + }, + { + "costumeName": "sl pop L arm", + "baseLayerID": -1, + "baseLayerMD5": "48fcc33505fbd3c65d1f7bfbb4745a13.png", + "bitmapResolution": 2, + "rotationCenterX": 145, + "rotationCenterY": 174 + }, + { + "costumeName": "sl pop R arm", + "baseLayerID": -1, + "baseLayerMD5": "ffae2eb189d6efc97efc91e93ed4d8bf.png", + "bitmapResolution": 2, + "rotationCenterX": 66, + "rotationCenterY": 237 } ], "currentCostumeIndex": 0, @@ -21776,53 +12834,46 @@ } }, { - "name": "Button4", - "md5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", + "name": "Snowflake", + "md5": "67de2af723246de37d7379b76800ee0b.svg", "type": "sprite", "tags": [ "things", + "holiday", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button4", + "objName": "Snowflake", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "button4-a", - "baseLayerID": -1, - "baseLayerMD5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 34 - }, - { - "costumeName": "button4-b", + "costumeName": "snowflake", "baseLayerID": -1, - "baseLayerMD5": "840f4ef01849e459fd84f5470a3b0080.svg", + "baseLayerMD5": "67de2af723246de37d7379b76800ee0b.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 34 + "rotationCenterX": 104, + "rotationCenterY": 103 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.65, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -21832,21 +12883,22 @@ } }, { - "name": "Button5", - "md5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", + "name": "Snowman", + "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "type": "sprite", "tags": [ - "things", + "fantasy", + "holiday", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button5", + "objName": "Snowman", "sounds": [ { "soundName": "pop", @@ -21859,20 +12911,11 @@ ], "costumes": [ { - "costumeName": "button5-a", - "baseLayerID": -1, - "baseLayerMD5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 72 - }, - { - "costumeName": "button5-b", + "costumeName": "snowman", "baseLayerID": -1, - "baseLayerMD5": "54cd55512f7571060e6e64168e541222.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -21888,38 +12931,39 @@ } }, { - "name": "Cake", - "md5": "97ab3596dc06510e963fa29795e663bf.svg", + "name": "Soccer Ball", + "md5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", "type": "sprite", "tags": [ "things", - "holiday", + "sports", "drawing", "vector" ], "info": [ 0, - 2, - 0 + 1, + 1 ], "json": { - "objName": "Cake", - "costumes": [ + "objName": "Soccer Ball", + "sounds": [ { - "costumeName": "cake-a", - "baseLayerID": -1, - "baseLayerMD5": "97ab3596dc06510e963fa29795e663bf.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 50 - }, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], + "costumes": [ { - "costumeName": "cake-b", + "costumeName": "soccer ball", "baseLayerID": -1, - "baseLayerMD5": "61d5481955a2f42cb843d09506f6744e.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 42 + "baseLayerMD5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", + "rotationCenterX": 32, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, @@ -21935,13 +12979,16 @@ } }, { - "name": "Calvrett", - "md5": "82b2f97fec9083cad502a781fe88929b.png", + "name": "Spaceship", + "md5": "028b6d5210a4a94d5cd3d2001fd3d74d.svg", "type": "sprite", "tags": [ - "people", - "photo", - "bitmap" + "transportation", + "space", + "fantasy", + "flying", + "drawing", + "vector" ], "info": [ 0, @@ -21949,7 +12996,7 @@ 1 ], "json": { - "objName": "Calvrett", + "objName": "Spaceship", "sounds": [ { "soundName": "pop", @@ -21962,21 +13009,23 @@ ], "costumes": [ { - "costumeName": "calvrett jumping", + "costumeName": "spaceship-a", "baseLayerID": -1, - "baseLayerMD5": "82b2f97fec9083cad502a781fe88929b.png", - "rotationCenterX": 84, - "rotationCenterY": 108 + "baseLayerMD5": "028b6d5210a4a94d5cd3d2001fd3d74d.svg", + "bitmapResolution": 1, + "rotationCenterX": 59, + "rotationCenterY": 84 }, { - "costumeName": "calvrett thinking", + "costumeName": "spaceship-b", "baseLayerID": -1, - "baseLayerMD5": "b8d2409e58b663020353c08fb029b7e6.png", - "rotationCenterX": 54, - "rotationCenterY": 85 + "baseLayerMD5": "55e3d48245934393402ab214c122ed8f.svg", + "bitmapResolution": 1, + "rotationCenterX": 62, + "rotationCenterY": 83 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -21989,54 +13038,331 @@ } }, { - "name": "Candle", - "md5": "9bb90825b1d7c360aa47ee18883cd3cd.svg", + "name": "Speaker", + "md5": "44dc3a2ec161999545914d1f77332d76.svg", "type": "sprite", "tags": [ "things", - "holiday", + "music", + "dance", "drawing", "vector" ], "info": [ - 0, - 2, - 1 + 1, + 1, + 7 ], "json": { - "objName": "Candle", - "sounds": [ + "objName": "Speaker", + "variables": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ + "name": "scale degree", + "value": 1, + "isPersistent": false + }, { - "costumeName": "candle1-a", - "baseLayerID": -1, - "baseLayerMD5": "9bb90825b1d7c360aa47ee18883cd3cd.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 32 + "name": "octave", + "value": 0, + "isPersistent": false }, { - "costumeName": "candle1-b", + "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" + ] + ] + ] + ] + ], + "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", + "soundID": -1, + "md5": "079067d7909f791b29f8be1c00fc2131.wav", + "sampleCount": 44096, + "rate": 22050, + "format": "" + }, + { + "soundName": "kick back", + "soundID": -1, + "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "drum funky", + "soundID": -1, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "speaker", "baseLayerID": -1, - "baseLayerMD5": "4f2ab7fc559ecbbc61721f76639a4e44.svg", + "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 32 + "rotationCenterX": 53, + "rotationCenterY": 79 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.75, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -22046,14 +13372,13 @@ } }, { - "name": "Candles1", - "md5": "b8432a2c0d04408b3ba58ec3b01582f0.svg", + "name": "Squirrel", + "md5": "7e24c99c1b853e52f8e7f9004416fa34.png", "type": "sprite", "tags": [ - "things", - "holiday", - "drawing", - "vector" + "animals", + "bitmap", + "photo" ], "info": [ 0, @@ -22061,25 +13386,25 @@ 1 ], "json": { - "objName": "Candles1", + "objName": "Squirrel", "sounds": [ { - "soundName": "strum", + "soundName": "meow", "soundID": -1, - "md5": "b92de59d992a655c1b542223a784cda6.wav", - "sampleCount": 11247, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "candles1", + "costumeName": "squirrel1", "baseLayerID": -1, - "baseLayerMD5": "b8432a2c0d04408b3ba58ec3b01582f0.svg", - "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 37 + "baseLayerMD5": "7e24c99c1b853e52f8e7f9004416fa34.png", + "bitmapResolution": 2, + "rotationCenterX": 158, + "rotationCenterY": 146 } ], "currentCostumeIndex": 0, @@ -22095,8 +13420,8 @@ } }, { - "name": "Candles2", - "md5": "76a9de5efb140fe287dc0f197a0e8d4c.svg", + "name": "Star1", + "md5": "ab0914e53e360477275e58b83ec4d423.svg", "type": "sprite", "tags": [ "things", @@ -22110,31 +13435,31 @@ 1 ], "json": { - "objName": "Candles2", + "objName": "Star1", "sounds": [ { - "soundName": "strum", + "soundName": "pop", "soundID": -1, - "md5": "b92de59d992a655c1b542223a784cda6.wav", - "sampleCount": 11247, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "candles2", + "costumeName": "star1", "baseLayerID": -1, - "baseLayerMD5": "76a9de5efb140fe287dc0f197a0e8d4c.svg", + "baseLayerMD5": "ab0914e53e360477275e58b83ec4d423.svg", "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 79 + "rotationCenterX": 21, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -22144,14 +13469,14 @@ } }, { - "name": "Car-Bug", - "md5": "c0b7d099a815f58ff6d92538856f08c1.png", + "name": "Star2", + "md5": "0a0ef50bb5a59be1785c8bb12cdacae6.svg", "type": "sprite", "tags": [ - "transportation", - "city", - "photo", - "bitmap" + "things", + "holiday", + "drawing", + "vector" ], "info": [ 0, @@ -22159,24 +13484,25 @@ 1 ], "json": { - "objName": "Car-Bug", + "objName": "Star2", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "car-bug", + "costumeName": "star2", "baseLayerID": -1, - "baseLayerMD5": "c0b7d099a815f58ff6d92538856f08c1.png", - "rotationCenterX": 100, - "rotationCenterY": 39 + "baseLayerMD5": "0a0ef50bb5a59be1785c8bb12cdacae6.svg", + "bitmapResolution": 1, + "rotationCenterX": 25, + "rotationCenterY": 27 } ], "currentCostumeIndex": 0, @@ -22192,60 +13518,38 @@ } }, { - "name": "Cassy", - "md5": "db4e1ee1f9102e3da5e06f2d17881df5.png", + "name": "Star3", + "md5": "04da262057dfe130860086031e5018ef.svg", "type": "sprite", "tags": [ - "people", - "city", - "photo", - "bitmap" + "things", + "holiday", + "drawing", + "vector" ], "info": [ 0, - 4, - 1 + 2, + 0 ], "json": { - "objName": "Cassy", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], + "objName": "Star3", "costumes": [ { - "costumeName": "cassy-a", - "baseLayerID": -1, - "baseLayerMD5": "db4e1ee1f9102e3da5e06f2d17881df5.png", - "rotationCenterX": 43, - "rotationCenterY": 100 - }, - { - "costumeName": "cassy-b", - "baseLayerID": -1, - "baseLayerMD5": "2f6f57d1ab69fc18a38fd30572530437.png", - "rotationCenterX": 35, - "rotationCenterY": 100 - }, - { - "costumeName": "cassy-c", + "costumeName": "star3-a", "baseLayerID": -1, - "baseLayerMD5": "662752d56bb77544f3e79ee8c16b3f2d.png", - "rotationCenterX": 70, - "rotationCenterY": 58 + "baseLayerMD5": "04da262057dfe130860086031e5018ef.svg", + "bitmapResolution": 1, + "rotationCenterX": 54, + "rotationCenterY": 55 }, { - "costumeName": "cassy-d", + "costumeName": "star3-b", "baseLayerID": -1, - "baseLayerMD5": "24e9dac390ae4e5b0c17e7d922eb033b.png", - "rotationCenterX": 72, - "rotationCenterY": 100 + "baseLayerMD5": "a082be13c0e5d17230f448dd55029a7d.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, @@ -22261,23 +13565,22 @@ } }, { - "name": "Cassy Dance", - "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", + "name": "Starfish", + "md5": "3d1101bbc24ae292a36356af325f660c.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "animals", + "drawing", + "underwater", + "vector" ], "info": [ 0, - 4, + 2, 1 ], "json": { - "objName": "Cassy Dance", + "objName": "Starfish", "sounds": [ { "soundName": "pop", @@ -22290,39 +13593,21 @@ ], "costumes": [ { - "costumeName": "cassy dance-a", - "baseLayerID": -1, - "baseLayerMD5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", - "bitmapResolution": 2, - "rotationCenterX": 104, - "rotationCenterY": 192 - }, - { - "costumeName": "cassy dance-b", - "baseLayerID": -1, - "baseLayerMD5": "086dc4312d3bf4595d6b3fd4b1021b35.png", - "bitmapResolution": 2, - "rotationCenterX": 140, - "rotationCenterY": 192 - }, - { - "costumeName": "cassy dance-c", + "costumeName": "starfish-a", "baseLayerID": -1, - "baseLayerMD5": "dffbfb382641655dbd698559ed49fd99.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 188 + "baseLayerMD5": "3d1101bbc24ae292a36356af325f660c.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "cassy dance-d", + "costumeName": "starfish-b ", "baseLayerID": -1, - "baseLayerMD5": "d0e98431c4744f684a13e8331d838203.png", - "bitmapResolution": 2, - "rotationCenterX": 94, - "rotationCenterY": 180 + "baseLayerMD5": "ad8007f4e63693984d4adc466ffa3ad2.svg", + "rotationCenterX": 53, + "rotationCenterY": 60 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -22335,47 +13620,29 @@ } }, { - "name": "Cat1", - "md5": "f88bf1935daea28f8ca098462a31dbb0.svg", + "name": "Stop", + "md5": "5b9e3e8edffb0bd4914113609eec5e04.svg", "type": "sprite", "tags": [ - "animals", - "drawing", - "vector" + "things", + "vector", + "drawing" ], "info": [ 0, - 2, - 1 + 1, + 0 ], "json": { - "objName": "Cat1", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], + "objName": "Stop", "costumes": [ { - "costumeName": "cat1-a", - "baseLayerID": -1, - "baseLayerMD5": "f88bf1935daea28f8ca098462a31dbb0.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 50 - }, - { - "costumeName": "cat1-b", + "costumeName": "stop", "baseLayerID": -1, - "baseLayerMD5": "6e8bd9ae68fdb02b7e1e3df656a75635.svg", + "baseLayerMD5": "5b9e3e8edffb0bd4914113609eec5e04.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 55 + "rotationCenterX": 25, + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, @@ -22391,22 +13658,22 @@ } }, { - "name": "Cat1 Flying", - "md5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", + "name": "Street Cleaner", + "md5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", "type": "sprite", "tags": [ - "animals", - "drawing", - "flying", - "vector" + "transportation", + "city", + "photo", + "bitmap" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Cat1 Flying", + "objName": "Street Cleaner", "sounds": [ { "soundName": "pop", @@ -22419,20 +13686,11 @@ ], "costumes": [ { - "costumeName": "cat1 flying-a", - "baseLayerID": -1, - "baseLayerMD5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", - "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 48 - }, - { - "costumeName": "cat1 flying-b", + "costumeName": "street-cleaner-mit", "baseLayerID": -1, - "baseLayerMD5": "0d192725870ef0eda50d91cab0e3c9c5.svg", - "bitmapResolution": 1, - "rotationCenterX": 42, - "rotationCenterY": 44 + "baseLayerMD5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", + "rotationCenterX": 100, + "rotationCenterY": 59 } ], "currentCostumeIndex": 0, @@ -22448,12 +13706,14 @@ } }, { - "name": "Cat2", - "md5": "01ae57fd339529445cb890978ef8a054.svg", + "name": "Sun", + "md5": "55c931c65456822c0c56a2b30e3e550d.svg", "type": "sprite", "tags": [ - "animals", + "things", + "space", "drawing", + "vector", "vector" ], "info": [ @@ -22462,25 +13722,24 @@ 1 ], "json": { - "objName": "Cat2", + "objName": "Sun", "sounds": [ { - "soundName": "meow2", + "soundName": "pop", "soundID": -1, - "md5": "cf51a0c4088942d95bcc20af13202710.wav", - "sampleCount": 6512, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "cat2", + "costumeName": "sun", "baseLayerID": -1, - "baseLayerMD5": "01ae57fd339529445cb890978ef8a054.svg", - "bitmapResolution": 1, - "rotationCenterX": 87, - "rotationCenterY": 39 + "baseLayerMD5": "55c931c65456822c0c56a2b30e3e550d.svg", + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, @@ -22496,23 +13755,22 @@ } }, { - "name": "Catherine Dance", - "md5": "7f7684029e9726376aaaae1158439f3e.png", + "name": "Sunglasses1", + "md5": "424393e8705aeadcfecb8559ce4dcea2.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "dress-up", + "things", + "drawing", + "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Catherine Dance", + "objName": "Sunglasses1", "sounds": [ { "soundName": "pop", @@ -22525,36 +13783,11 @@ ], "costumes": [ { - "costumeName": "catherine-a", - "baseLayerID": -1, - "baseLayerMD5": "7f7684029e9726376aaaae1158439f3e.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 123 - }, - { - "costumeName": "catherine-b", - "baseLayerID": -1, - "baseLayerMD5": "79052da8d59a6a16a0f6d09cd94237ae.png", - "bitmapResolution": 2, - "rotationCenterX": 179, - "rotationCenterY": 133 - }, - { - "costumeName": "catherine-c", - "baseLayerID": -1, - "baseLayerMD5": "6e34f695da1e18d53e6c050d95ba0e4a.png", - "bitmapResolution": 2, - "rotationCenterX": 103, - "rotationCenterY": 28 - }, - { - "costumeName": "catherine-d", + "costumeName": "sunglasses1", "baseLayerID": -1, - "baseLayerMD5": "feff7824a6fd6747391012dcfe9ac4f0.png", - "bitmapResolution": 2, - "rotationCenterX": 121, - "rotationCenterY": 113 + "baseLayerMD5": "424393e8705aeadcfecb8559ce4dcea2.svg", + "rotationCenterX": 37, + "rotationCenterY": 14 } ], "currentCostumeIndex": 0, @@ -22570,23 +13803,22 @@ } }, { - "name": "Champ99", - "md5": "b940c99d8e677ac5773cb4d592b16734.png", + "name": "Sunglasses2", + "md5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "dress-up", + "things", + "drawing", + "vector" ], "info": [ 0, - 7, + 1, 1 ], "json": { - "objName": "Champ99", + "objName": "Sunglasses2", "sounds": [ { "soundName": "pop", @@ -22599,60 +13831,11 @@ ], "costumes": [ { - "costumeName": "champ99-a", - "baseLayerID": -1, - "baseLayerMD5": "b940c99d8e677ac5773cb4d592b16734.png", - "bitmapResolution": 2, - "rotationCenterX": 248, - "rotationCenterY": 306 - }, - { - "costumeName": "champ99-b", - "baseLayerID": -1, - "baseLayerMD5": "2ebc7632bc9e665d9eeea93190fad7ad.png", - "bitmapResolution": 2, - "rotationCenterX": 164, - "rotationCenterY": 290 - }, - { - "costumeName": "champ99-c", - "baseLayerID": -1, - "baseLayerMD5": "bfcff80b0044c644c555ba24f2484106.png", - "bitmapResolution": 2, - "rotationCenterX": 152, - "rotationCenterY": 270 - }, - { - "costumeName": "champ99-d", - "baseLayerID": -1, - "baseLayerMD5": "34de53e52a768d60a96e3ae0c030dfc5.png", - "bitmapResolution": 2, - "rotationCenterX": 188, - "rotationCenterY": 260 - }, - { - "costumeName": "champ99-e", - "baseLayerID": -1, - "baseLayerMD5": "0cb685bf8584df9caf124da929ab3453.png", - "bitmapResolution": 2, - "rotationCenterX": 190, - "rotationCenterY": 248 - }, - { - "costumeName": "champ99-f", - "baseLayerID": -1, - "baseLayerMD5": "516d30b29aed8145718db421f4737953.png", - "bitmapResolution": 2, - "rotationCenterX": 114, - "rotationCenterY": 250 - }, - { - "costumeName": "champ99-g", + "costumeName": "sunglasses2", "baseLayerID": -1, - "baseLayerMD5": "49e0edcb319527d936981f06b4111d53.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 258 + "baseLayerMD5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", + "rotationCenterX": 29, + "rotationCenterY": 10 } ], "currentCostumeIndex": 0, @@ -22668,21 +13851,22 @@ } }, { - "name": "Cheesy-Puffs", - "md5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", + "name": "Taco", + "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg", "type": "sprite", "tags": [ "things", - "photo", - "bitmap" + "flying", + "drawing", + "vector" ], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Cheesy-Puffs", + "objName": "Taco", "sounds": [ { "soundName": "pop", @@ -22695,12 +13879,20 @@ ], "costumes": [ { - "costumeName": "cheesy-puffs", + "costumeName": "taco-a", "baseLayerID": -1, - "baseLayerMD5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", - "bitmapResolution": 2, - "rotationCenterX": 87, - "rotationCenterY": 72 + "baseLayerMD5": "d224b30c54bd4d6000c935938c7f5d7e.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 15 + }, + { + "costumeName": "taco-b", + "baseLayerID": -1, + "baseLayerMD5": "6dee4f866d79e6475d9824ba11973037.svg", + "bitmapResolution": 1, + "rotationCenterX": 56, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, @@ -22716,15 +13908,14 @@ } }, { - "name": "Cloud", - "md5": "47005a1f20309f577a03a67abbb6b94e.svg", + "name": "Tennis Ball", + "md5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", "type": "sprite", "tags": [ - "flying", - "city", "things", - "drawing", - "vector" + "sports", + "photo", + "bitmap" ], "info": [ 0, @@ -22732,31 +13923,30 @@ 1 ], "json": { - "objName": "Cloud", + "objName": "Tennis Ball", "sounds": [ { - "soundName": "ripples", + "soundName": "pop", "soundID": -1, - "md5": "4da8a805673c288965e1e5535c3f7f2b.wav", - "sampleCount": 10144, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "cloud", + "costumeName": "tennisball", "baseLayerID": -1, - "baseLayerMD5": "47005a1f20309f577a03a67abbb6b94e.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 45 + "baseLayerMD5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", + "rotationCenterX": 15, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.9, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -22766,13 +13956,12 @@ } }, { - "name": "Clouds", - "md5": "c7d7de8e29179407f03b054fa640f4d0.svg", + "name": "Tera", + "md5": "b54a4a9087435863ab6f6c908f1cac99.svg", "type": "sprite", "tags": [ - "flying", - "city", - "things", + "fantasy", + "space", "drawing", "vector" ], @@ -22782,7 +13971,7 @@ 1 ], "json": { - "objName": "Clouds", + "objName": "Tera", "sounds": [ { "soundName": "pop", @@ -22795,36 +13984,32 @@ ], "costumes": [ { - "costumeName": "cloud-a", + "costumeName": "tera-a", "baseLayerID": -1, - "baseLayerMD5": "c7d7de8e29179407f03b054fa640f4d0.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 19 + "baseLayerMD5": "b54a4a9087435863ab6f6c908f1cac99.svg", + "rotationCenterX": 49, + "rotationCenterY": 63 }, { - "costumeName": "cloud-b", + "costumeName": "tera-b", "baseLayerID": -1, - "baseLayerMD5": "d8595350ebb460494c9189dabb968336.svg", - "bitmapResolution": 1, - "rotationCenterX": 101, - "rotationCenterY": 20 + "baseLayerMD5": "1e6b3a29351cda80d1a70a3cc0e499f2.svg", + "rotationCenterX": 49, + "rotationCenterY": 64 }, { - "costumeName": "cloud-c", + "costumeName": "tera-c", "baseLayerID": -1, - "baseLayerMD5": "395fc991e64ac0a4aa46758ab4bc65cb.svg", - "bitmapResolution": 1, - "rotationCenterX": 97, - "rotationCenterY": 9 + "baseLayerMD5": "7edf116cbb7111292361431521ae699e.svg", + "rotationCenterX": 49, + "rotationCenterY": 63 }, { - "costumeName": "cloud-d", + "costumeName": "tera-d", "baseLayerID": -1, - "baseLayerMD5": "1767e704acb11ffa409f77cc79ba7e86.svg", - "bitmapResolution": 1, - "rotationCenterX": 87, - "rotationCenterY": 21 + "baseLayerMD5": "7c3c9c8b5f4ac77de2036175712a777a.svg", + "rotationCenterX": 49, + "rotationCenterY": 63 } ], "currentCostumeIndex": 0, @@ -22840,97 +14025,53 @@ } }, { - "name": "CM Hip-Hop", - "md5": "db291ec7e061ecd4d797875e3aec0a09.png", + "name": "Text", + "md5": "5ebbfead1d5728f6e93a4259b699f2e9.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "letters", + "things", + "vector" ], "info": [ 0, - 8, - 1 + 4, + 0 ], "json": { - "objName": "CM Hip-Hop", - "sounds": [ - { - "soundName": "dance snare beat", - "soundID": -1, - "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], + "objName": "Text", "costumes": [ { - "costumeName": "cm top stand", - "baseLayerID": -1, - "baseLayerMD5": "db291ec7e061ecd4d797875e3aec0a09.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 226 - }, - { - "costumeName": "cm top R leg", - "baseLayerID": -1, - "baseLayerMD5": "b5cfa26a969dc001fb38d29c5ef8f1bf.png", - "bitmapResolution": 2, - "rotationCenterX": 90, - "rotationCenterY": 240 - }, - { - "costumeName": "cm top L leg", - "baseLayerID": -1, - "baseLayerMD5": "9b3224263e7c828c54326d9b4f22a74b.png", - "bitmapResolution": 2, - "rotationCenterX": 116, - "rotationCenterY": 238 - }, - { - "costumeName": "cm top ready", - "baseLayerID": -1, - "baseLayerMD5": "ab97d9c6e3c0efe27bfd9e44ac3af497.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 180 - }, - { - "costumeName": "cm top L cross", + "costumeName": "text awesome", "baseLayerID": -1, - "baseLayerMD5": "3b0538ba8b6fcc0f938013b912e34305.png", - "bitmapResolution": 2, - "rotationCenterX": 122, - "rotationCenterY": 162 + "baseLayerMD5": "5ebbfead1d5728f6e93a4259b699f2e9.svg", + "bitmapResolution": 1, + "rotationCenterX": 109, + "rotationCenterY": 32 }, { - "costumeName": "cm top R cross", + "costumeName": "text keep scratching", "baseLayerID": -1, - "baseLayerMD5": "00716f8ab864ae479db3017146d28c64.png", - "bitmapResolution": 2, - "rotationCenterX": 156, - "rotationCenterY": 164 + "baseLayerMD5": "b3de9a77e2c1bb2f3e29f29a03d869ea.svg", + "bitmapResolution": 1, + "rotationCenterX": 135, + "rotationCenterY": 24 }, { - "costumeName": "cm pop L arm", + "costumeName": "text valentine's day", "baseLayerID": -1, - "baseLayerMD5": "ce0928c8dbc625661b44c3503debae7e.png", - "bitmapResolution": 2, - "rotationCenterX": 136, - "rotationCenterY": 243 + "baseLayerMD5": "a765b830814192ab323b5893a65cabfa.svg", + "bitmapResolution": 1, + "rotationCenterX": 172, + "rotationCenterY": 30 }, { - "costumeName": "cm pop R arm", + "costumeName": "text Halloween", "baseLayerID": -1, - "baseLayerMD5": "e5555af183c643c7006632b26d851a32.png", - "bitmapResolution": 2, - "rotationCenterX": 79, - "rotationCenterY": 229 + "baseLayerMD5": "7aee725d72bc077424690a0acce8589b.svg", + "bitmapResolution": 1, + "rotationCenterX": 165, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, @@ -22942,78 +14083,143 @@ "isDraggable": false, "indexInLibrary": 100000, "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Convertible1", - "md5": "099953d710d842e592084765c17bda82.png", - "type": "sprite", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Convertible1", + "spriteInfo": {}, "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "convertible1", - "baseLayerID": -1, - "baseLayerMD5": "099953d710d842e592084765c17bda82.png", - "rotationCenterX": 110, - "rotationCenterY": 27 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Convertible2", - "md5": "2091f1f3fc578189bced6b257f353995.png", - "type": "sprite", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Convertible2", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ] + } + }, + { + "name": "Trampoline", + "md5": "20b16bcb61396df304cad5e8886ceb46.png", + "type": "sprite", + "tags": [ + "things", + "photo", + "bitmap" + ], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Trampoline", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, @@ -23022,11 +14228,11 @@ ], "costumes": [ { - "costumeName": "convertible2", + "costumeName": "trampoline", "baseLayerID": -1, - "baseLayerMD5": "2091f1f3fc578189bced6b257f353995.png", - "rotationCenterX": 90, - "rotationCenterY": 22 + "baseLayerMD5": "20b16bcb61396df304cad5e8886ceb46.png", + "rotationCenterX": 100, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -23042,12 +14248,12 @@ } }, { - "name": "Convertible3", - "md5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "name": "Tree1", + "md5": "8c40e2662c55d17bc384f47165ac43c1.svg", "type": "sprite", "tags": [ - "transportation", - "city", + "things", + "holiday", "drawing", "vector" ], @@ -23057,31 +14263,31 @@ 1 ], "json": { - "objName": "Convertible3", + "objName": "Tree1", "sounds": [ { - "soundName": "meow", + "soundName": "tom drum", "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "md5": "5a8b8678d37a860dd6c08082d5cda3c2.wav", + "sampleCount": 35803, "rate": 22050, - "format": "" + "format": "adpcm" } ], "costumes": [ { - "costumeName": "convertible3", + "costumeName": "tree1", "baseLayerID": -1, - "baseLayerMD5": "b6ac3c9e1789cba2302d2ef82d62d019.svg", + "baseLayerMD5": "8c40e2662c55d17bc384f47165ac43c1.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 77, + "rotationCenterY": 126 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.95, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -23091,54 +14297,46 @@ } }, { - "name": "Cowbell", - "md5": "3b00920b17d43986685f3855bcb6afe7.svg", + "name": "Tree2", + "md5": "d4cafdb83f5ff518383f7174817243e6.svg", "type": "sprite", "tags": [ "things", - "music", + "holiday", "drawing", "vector" ], "info": [ 0, 1, - 2 + 1 ], "json": { - "objName": "Cowbell", + "objName": "Tree2", "sounds": [ { - "soundName": "small cowbell", - "soundID": -1, - "md5": "e29154f53f56f96f8a3292bdcddcec54.wav", - "sampleCount": 9718, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "large cowbell", + "soundName": "pop", "soundID": -1, - "md5": "006316650ffc673dc02d36aa55881327.wav", - "sampleCount": 20856, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "cowbell", + "costumeName": "tree2", "baseLayerID": -1, - "baseLayerMD5": "3b00920b17d43986685f3855bcb6afe7.svg", + "baseLayerMD5": "d4cafdb83f5ff518383f7174817243e6.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 30 + "rotationCenterX": 82, + "rotationCenterY": 104 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 0.9, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -23148,13 +14346,13 @@ } }, { - "name": "Crab", - "md5": "114249a5660f7948663d95de575cfd8d.svg", + "name": "Tree-lights", + "md5": "177682396be2961367a50289a5552314.svg", "type": "sprite", "tags": [ - "animals", + "things", + "holiday", "drawing", - "underwater", "vector" ], "info": [ @@ -23163,37 +14361,39 @@ 1 ], "json": { - "objName": "Crab", + "objName": "Tree-lights", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "crab-a", + "costumeName": "tree-lights-a", "baseLayerID": -1, - "baseLayerMD5": "114249a5660f7948663d95de575cfd8d.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "177682396be2961367a50289a5552314.svg", + "bitmapResolution": 1, + "rotationCenterX": 59, + "rotationCenterY": 77 }, { - "costumeName": "crab-b", + "costumeName": "tree-lights-b", "baseLayerID": -1, - "baseLayerMD5": "9bf050664e68c10d2616e85f2873be09.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "b0282c029046fd1ed0541675911fe8bb.svg", + "bitmapResolution": 1, + "rotationCenterX": 58, + "rotationCenterY": 76 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 1.3000000000000005, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -23203,22 +14403,23 @@ } }, { - "name": "Creature1", - "md5": "a560c6eab2e1de2462bdaeb1d698736c.svg", + "name": "Trees", + "md5": "866ed2c2971bb04157e14e935ac8521c.svg", "type": "sprite", "tags": [ - "fantasy", - "holiday", + "city", + "flying", + "things", "drawing", "vector" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Creature1", + "objName": "Trees", "sounds": [ { "soundName": "pop", @@ -23231,28 +14432,20 @@ ], "costumes": [ { - "costumeName": "creature1-a", - "baseLayerID": -1, - "baseLayerMD5": "a560c6eab2e1de2462bdaeb1d698736c.svg", - "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 80 - }, - { - "costumeName": "creature1-b", + "costumeName": "trees-a", "baseLayerID": -1, - "baseLayerMD5": "8042b71fc2ae322151c0a3a163701333.svg", + "baseLayerMD5": "866ed2c2971bb04157e14e935ac8521c.svg", "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 78 + "rotationCenterX": 49, + "rotationCenterY": 94 }, { - "costumeName": "creature1-c", + "costumeName": "trees-b", "baseLayerID": -1, - "baseLayerMD5": "e12a83c8f1c0545b59fe8673e9fac79c.svg", + "baseLayerMD5": "f1393dde1bb0fc512577995b27616d86.svg", "bitmapResolution": 1, - "rotationCenterX": 63, - "rotationCenterY": 164 + "rotationCenterX": 36, + "rotationCenterY": 87 } ], "currentCostumeIndex": 0, @@ -23268,8 +14461,8 @@ } }, { - "name": "Cymbal", - "md5": "532860ee3ecfd05d5f473dbe3ea69c8e.svg", + "name": "Trombone", + "md5": "7d7098a45ab54def8d919141e90db4c5.svg", "type": "sprite", "tags": [ "things", @@ -23280,68 +14473,92 @@ "info": [ 0, 2, - 5 + 8 ], "json": { - "objName": "Cymbal", + "objName": "Trombone", "sounds": [ { - "soundName": "crash cymbal", + "soundName": "C trombone", "soundID": -1, - "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav", - "sampleCount": 25220, + "md5": "821b23a489201a0f21f47ba8528ba47f.wav", + "sampleCount": 19053, "rate": 22050, "format": "" }, { - "soundName": "hihat cymbal", + "soundName": "D trombone", "soundID": -1, - "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav", - "sampleCount": 2752, + "md5": "f3afca380ba74372d611d3f518c2f35b.wav", + "sampleCount": 17339, "rate": 22050, "format": "" }, { - "soundName": "splash cymbal", + "soundName": "E trombone", "soundID": -1, - "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav", - "sampleCount": 9600, + "md5": "c859fb0954acaa25c4b329df5fb76434.wav", + "sampleCount": 16699, "rate": 22050, "format": "" }, { - "soundName": "roll cymbal", + "soundName": "F trombone", "soundID": -1, - "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav", - "sampleCount": 26432, + "md5": "d6758470457aac2aa712717a676a5163.wav", + "sampleCount": 19373, "rate": 22050, "format": "" }, { - "soundName": "bell cymbal", + "soundName": "G trombone", "soundID": -1, - "md5": "efddec047de95492f775a1b5b2e8d19e.wav", - "sampleCount": 19328, + "md5": "9436fd7a0eacb4a6067e7db14236dde1.wav", + "sampleCount": 17179, + "rate": 22050, + "format": "" + }, + { + "soundName": "A trombone", + "soundID": -1, + "md5": "863ccc8ba66e6dabbce2a1261c22be0f.wav", + "sampleCount": 17227, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "B trombone", + "soundID": -1, + "md5": "85b663229525b73d9f6647f78eb23e0a.wav", + "sampleCount": 15522, + "rate": 22050, + "format": "" + }, + { + "soundName": "C2 trombone", + "soundID": -1, + "md5": "68aec107bd3633b2ee40c532eedc3897.wav", + "sampleCount": 13904, "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "cymbal-a", + "costumeName": "trombone-a", "baseLayerID": -1, - "baseLayerMD5": "532860ee3ecfd05d5f473dbe3ea69c8e.svg", + "baseLayerMD5": "7d7098a45ab54def8d919141e90db4c5.svg", "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 60 + "rotationCenterX": 73, + "rotationCenterY": 43 }, { - "costumeName": "cymbal-b", + "costumeName": "trombone-b", "baseLayerID": -1, - "baseLayerMD5": "ae5b19022fa882ff95790b25279b9a3f.svg", + "baseLayerMD5": "08edef976dbc09e8b62bce0f4607ea4a.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 73 + "rotationCenterX": 73, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, @@ -23357,137 +14574,104 @@ } }, { - "name": "D-Money Hip-Hop", - "md5": "b30a60d31aebead577b73affd22bf30f.svg", + "name": "Trumpet", + "md5": "3bcbd84df7924b6f97a2fa5d9bce56c8.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "things", + "music", + "drawing", + "vector" ], "info": [ 0, - 13, - 1 + 2, + 8 ], "json": { - "objName": "D-Money Hip-Hop", + "objName": "Trumpet", "sounds": [ { - "soundName": "dance celebrate", + "soundName": "C trumpet", "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, + "md5": "8970afcdc4e47bb54959a81fe27522bd.wav", + "sampleCount": 13118, "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "dm stance", - "baseLayerID": -1, - "baseLayerMD5": "b30a60d31aebead577b73affd22bf30f.svg", - "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 119 - }, - { - "costumeName": "dm top stand", - "baseLayerID": -1, - "baseLayerMD5": "cbf035d39d0a0bb070d2eb998cebd60d.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 244 - }, - { - "costumeName": "dm top R leg", - "baseLayerID": -1, - "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 232 - }, - { - "costumeName": "dm top L leg", - "baseLayerID": -1, - "baseLayerMD5": "fd8bb9665fe078d2d95dbc35bccf4046.png", - "bitmapResolution": 2, - "rotationCenterX": 230, - "rotationCenterY": 240 + "format": "" }, { - "costumeName": "dm freeze", - "baseLayerID": -1, - "baseLayerMD5": "31e687f186b19ea120cd5cfc9dea2a3f.png", - "bitmapResolution": 2, - "rotationCenterX": 220, - "rotationCenterY": 234 + "soundName": "D trumpet", + "soundID": -1, + "md5": "0b1345b8fe2ba3076fedb4f3ae48748a.wav", + "sampleCount": 12702, + "rate": 22050, + "format": "" }, { - "costumeName": "dm pop front", - "baseLayerID": -1, - "baseLayerMD5": "0b2fb609d6d10decfdd5a1c3b58369b4.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 234 + "soundName": "E trumpet", + "soundID": -1, + "md5": "494295a92314cadb220945a6711c568c.wav", + "sampleCount": 8680, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "dm pop down", - "baseLayerID": -1, - "baseLayerMD5": "3b65ce3551f9c111794f7f1fb8f325be.png", - "bitmapResolution": 2, - "rotationCenterX": 64, - "rotationCenterY": 74 + "soundName": "F trumpet", + "soundID": -1, + "md5": "5fa3108b119ca266029b4caa340a7cd0.wav", + "sampleCount": 12766, + "rate": 22050, + "format": "" }, { - "costumeName": "dm pop left", - "baseLayerID": -1, - "baseLayerMD5": "f636510e8ef231d7c0e72a572ce91c99.png", - "bitmapResolution": 2, - "rotationCenterX": 204, - "rotationCenterY": 250 + "soundName": "G trumpet", + "soundID": -1, + "md5": "e84afda25975f14b364118591538ccf4.wav", + "sampleCount": 14640, + "rate": 22050, + "format": "" }, { - "costumeName": "dm pop right", - "baseLayerID": -1, - "baseLayerMD5": "36b32430e45e071071052ef33c637f48.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 238 + "soundName": "A trumpet", + "soundID": -1, + "md5": "d2dd6b4372ca17411965dc92d52b2172.wav", + "sampleCount": 13911, + "rate": 22050, + "format": "" }, { - "costumeName": "dm pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "426e1520efc34fef45be0596fd5f7120.png", - "bitmapResolution": 2, - "rotationCenterX": 90, - "rotationCenterY": 238 + "soundName": "B trumpet", + "soundID": -1, + "md5": "cad2bc57729942ed9b605145fc9ea65d.wav", + "sampleCount": 14704, + "rate": 22050, + "format": "" }, { - "costumeName": "dm pop stand", - "baseLayerID": -1, - "baseLayerMD5": "370cc57b40f1f1d6e52d6330b73d207f.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 244 - }, + "soundName": "C2 trumpet", + "soundID": -1, + "md5": "df08249ed5446cc5e10b7ac62faac89b.wav", + "sampleCount": 15849, + "rate": 22050, + "format": "" + } + ], + "costumes": [ { - "costumeName": "dm pop R arm", + "costumeName": "trumpet-a", "baseLayerID": -1, - "baseLayerMD5": "56fe91d2cf3ecb9d1b94006aee9eff79.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 240 + "baseLayerMD5": "3bcbd84df7924b6f97a2fa5d9bce56c8.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 25 }, { - "costumeName": "dm top R leg2", + "costumeName": "trumpet-a2", "baseLayerID": -1, - "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 232 + "baseLayerMD5": "5c0db80c63a72e8ab07d047183575378.svg", + "bitmapResolution": 1, + "rotationCenterX": 84, + "rotationCenterY": 25 } ], "currentCostumeIndex": 0, @@ -23503,49 +14687,74 @@ } }, { - "name": "Dan", - "md5": "1baa5b126e0e14d6070a997c0deefab5.png", + "name": "Ukulele", + "md5": "39215565394d6280c6c81e7ad86c7ca0.svg", "type": "sprite", "tags": [ - "people", - "city", - "photo", - "bitmap" + "things", + "music", + "drawing", + "vector" ], "info": [ 0, - 2, - 1 + 1, + 4 ], "json": { - "objName": "Dan", + "objName": "Ukulele", + "variables": [ + { + "name": "counter", + "value": 5, + "isPersistent": false + } + ], "sounds": [ { - "soundName": "pop", + "soundName": "C major ukulele", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "F major ukulele", + "soundID": -1, + "md5": "cd0ab5d1b0120c6ed92a1654ccf81376.wav", + "sampleCount": 18235, + "rate": 22050, + "format": "" + }, + { + "soundName": "A minor ukulele", + "soundID": -1, + "md5": "69d25af0fd065da39c71439174efc589.wav", + "sampleCount": 18267, + "rate": 22050, + "format": "" + }, + { + "soundName": "G ukulele", + "soundID": -1, + "md5": "d20218f92ee606277658959005538e2d.wav", + "sampleCount": 18235, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "dan-a", - "baseLayerID": -1, - "baseLayerMD5": "1baa5b126e0e14d6070a997c0deefab5.png", - "rotationCenterX": 36, - "rotationCenterY": 100 - }, - { - "costumeName": "dan-b", + "costumeName": "ukulele", "baseLayerID": -1, - "baseLayerMD5": "74be10ac815fd090cb42b92801002bb1.png", - "rotationCenterX": 47, - "rotationCenterY": 100 + "baseLayerMD5": "39215565394d6280c6c81e7ad86c7ca0.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 78 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -23558,22 +14767,21 @@ } }, { - "name": "Dani", - "md5": "f3038fb0f4a00806b02081c6789dd8cf.svg", + "name": "Umbrella", + "md5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", "type": "sprite", "tags": [ - "dress-up", - "people", - "drawing", - "vector" + "things", + "photo", + "bitmap" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Dani", + "objName": "Umbrella", "sounds": [ { "soundName": "pop", @@ -23586,28 +14794,11 @@ ], "costumes": [ { - "costumeName": "dani-a", - "baseLayerID": -1, - "baseLayerMD5": "f3038fb0f4a00806b02081c6789dd8cf.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 115 - }, - { - "costumeName": "dani-b", - "baseLayerID": -1, - "baseLayerMD5": "e5c7dd4905a78e1d54087b7165dd1e8c.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 115 - }, - { - "costumeName": "dani-c", + "costumeName": "umbrella", "baseLayerID": -1, - "baseLayerMD5": "cbc5f9c67022af201d498bc9b35608b8.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 113 + "baseLayerMD5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", + "rotationCenterX": 85, + "rotationCenterY": 62 } ], "currentCostumeIndex": 0, @@ -23623,22 +14814,23 @@ } }, { - "name": "Dee", - "md5": "aa239b7ccdce6bddf06900c709525764.svg", + "name": "Unicorn", + "md5": "a04def38351e7fd805226345cac4fbfe.svg", "type": "sprite", "tags": [ - "people", - "city", + "flying", + "fantasy", "drawing", + "castle", "vector" ], "info": [ 0, - 5, + 1, 1 ], "json": { - "objName": "Dee", + "objName": "Unicorn", "sounds": [ { "soundName": "pop", @@ -23651,44 +14843,11 @@ ], "costumes": [ { - "costumeName": "dee-a", - "baseLayerID": -1, - "baseLayerMD5": "aa239b7ccdce6bddf06900c709525764.svg", - "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-b", - "baseLayerID": -1, - "baseLayerMD5": "62b4ac1b735599e21af77c390b178095.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-c", - "baseLayerID": -1, - "baseLayerMD5": "6aa6196ce3245e93b8d1299f33adffcd.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 102 - }, - { - "costumeName": "dee-d", - "baseLayerID": -1, - "baseLayerMD5": "2159a6be8f7ff450d0b5e938ca34a3f4.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-e", + "costumeName": "unicorn", "baseLayerID": -1, - "baseLayerMD5": "e358d2a7e3a0a680928657161ce81a0a.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 99 + "baseLayerMD5": "a04def38351e7fd805226345cac4fbfe.svg", + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, @@ -23704,22 +14863,22 @@ } }, { - "name": "Devin", - "md5": "b1897e56265470b55fa65fabe2423c55.svg", + "name": "Vest", + "md5": "f8285ca9564451c62a0e3d75b8a714e8.svg", "type": "sprite", "tags": [ - "people", - "city", + "dress-up", + "things", "drawing", "vector" ], "info": [ 0, - 4, + 2, 1 ], "json": { - "objName": "Devin", + "objName": "Vest", "sounds": [ { "soundName": "pop", @@ -23732,36 +14891,20 @@ ], "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", + "costumeName": "vest-a", "baseLayerID": -1, - "baseLayerMD5": "eac3c03d86cebb42c8f30e373cb7f623.svg", + "baseLayerMD5": "f8285ca9564451c62a0e3d75b8a714e8.svg", "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 95 + "rotationCenterX": 18, + "rotationCenterY": 62 }, { - "costumeName": "devin-d", + "costumeName": "vest-b", "baseLayerID": -1, - "baseLayerMD5": "fa6a75afb0e4b822b91d8bb20d40c68f.svg", + "baseLayerMD5": "77d553eea3910ab8f5bac3d2da601061.svg", "bitmapResolution": 1, - "rotationCenterX": 41, - "rotationCenterY": 95 + "rotationCenterX": 18, + "rotationCenterY": 62 } ], "currentCostumeIndex": 0, @@ -23770,28 +14913,29 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": false, + "isDraggable": true, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Dinosaur1", - "md5": "286094ffce382c8383519ab896711989.svg", + "name": "Wanda", + "md5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", "type": "sprite", "tags": [ - "animals", + "people", + "city", "drawing", "vector" ], "info": [ 0, - 7, + 1, 1 ], "json": { - "objName": "Dinoaur1", + "objName": "Wanda", "sounds": [ { "soundName": "pop", @@ -23804,53 +14948,12 @@ ], "costumes": [ { - "costumeName": "dinosaur1-a", - "baseLayerID": -1, - "baseLayerMD5": "286094ffce382c8383519ab896711989.svg", - "rotationCenterX": 75, - "rotationCenterY": 84 - }, - { - "costumeName": "dinosaur1-b", - "baseLayerID": -1, - "baseLayerMD5": "d9eca17b8569f2cde20ef7d3ed0fe19f.svg", - "rotationCenterX": 116, - "rotationCenterY": 79 - }, - { - "costumeName": "dinosaur1-c", - "baseLayerID": -1, - "baseLayerMD5": "ade3d2ec5029693ecdcca17974bad5fd.svg", - "rotationCenterX": 65, - "rotationCenterY": 89 - }, - { - "costumeName": "dinosaur1-d", - "baseLayerID": -1, - "baseLayerMD5": "2aa7257a3e0a19ee315b23eaf7f56933.svg", - "rotationCenterX": 45, - "rotationCenterY": 87 - }, - { - "costumeName": "dinosaur1-e", - "baseLayerID": -1, - "baseLayerMD5": "ed46ee11478715f7596d01fb0f98aa3f.svg", - "rotationCenterX": 82, - "rotationCenterY": 84 - }, - { - "costumeName": "dinosaur1-f", - "baseLayerID": -1, - "baseLayerMD5": "39caf2473b1eee55edb688cfa3c240c7.svg", - "rotationCenterX": 69, - "rotationCenterY": 76 - }, - { - "costumeName": "dinosaur1-g", + "costumeName": "wanda", "baseLayerID": -1, - "baseLayerMD5": "f0f2aa4e8e015de497050d8d44bbfbf1.svg", - "rotationCenterX": 68, - "rotationCenterY": 72 + "baseLayerMD5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 68 } ], "currentCostumeIndex": 0, @@ -23866,47 +14969,55 @@ } }, { - "name": "Dinosaur2", - "md5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", + "name": "Watermelon", + "md5": "26fecef75cf3b6e0d98bff5c06475036.svg", "type": "sprite", "tags": [ - "animals", - "drawing", - "vector" + "things", + "vector", + "drawing" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Dinosaur2", + "objName": "Watermelon", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "dinosaur2-a", + "costumeName": "watermelon-a", "baseLayerID": -1, - "baseLayerMD5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", + "baseLayerMD5": "26fecef75cf3b6e0d98bff5c06475036.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 40, + "rotationCenterY": 27 }, { - "costumeName": "dinosaur2-b", + "costumeName": "watermelon-b", "baseLayerID": -1, - "baseLayerMD5": "a01d31caaab3b14b9bb0e2cd5a86c70c.svg", + "baseLayerMD5": "fbdaf4d1d349edd3ddf3a1c4528aa9ec.svg", "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 67 + "rotationCenterX": 22, + "rotationCenterY": 27 + }, + { + "costumeName": "watermelon-c", + "baseLayerID": -1, + "baseLayerMD5": "5976c10412306fc093c1d1930fa05119.svg", + "bitmapResolution": 1, + "rotationCenterX": 21, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, @@ -23922,11 +15033,14 @@ } }, { - "name": "Dinosaur3", - "md5": "79bb51bbf809b412147f2a196f8c9292.svg", + "name": "Witch", + "md5": "c991196a708294535a1dbdce7189c23c.svg", "type": "sprite", "tags": [ - "animals", + "flying", + "people", + "fantasy", + "castle", "drawing", "vector" ], @@ -23936,7 +15050,7 @@ 1 ], "json": { - "objName": "Dinosaur3", + "objName": "Witch", "sounds": [ { "soundName": "pop", @@ -23949,11 +15063,11 @@ ], "costumes": [ { - "costumeName": "dinosaur3", + "costumeName": "witch", "baseLayerID": -1, - "baseLayerMD5": "79bb51bbf809b412147f2a196f8c9292.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "c991196a708294535a1dbdce7189c23c.svg", + "rotationCenterX": 74, + "rotationCenterY": 59 } ], "currentCostumeIndex": 0, @@ -23969,12 +15083,13 @@ } }, { - "name": "Diver1", - "md5": "853803d5600b66538474909c5438c8ee.svg", + "name": "Wizard", + "md5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", "type": "sprite", "tags": [ "people", - "underwater", + "fantasy", + "castle", "drawing", "vector" ], @@ -23984,7 +15099,7 @@ 1 ], "json": { - "objName": "Diver1", + "objName": "Wizard", "sounds": [ { "soundName": "pop", @@ -23997,11 +15112,11 @@ ], "costumes": [ { - "costumeName": "diver1", + "costumeName": "wizard", "baseLayerID": -1, - "baseLayerMD5": "853803d5600b66538474909c5438c8ee.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", + "rotationCenterX": 76, + "rotationCenterY": 86 } ], "currentCostumeIndex": 0, @@ -24017,12 +15132,13 @@ } }, { - "name": "Diver2", - "md5": "248d3e69ada69a64b1077149ef6a931a.svg", + "name": "Wizard1", + "md5": "e085c97691d16f0cc8a595ce1137e26c.svg", "type": "sprite", "tags": [ "people", - "underwater", + "fantasy", + "castle", "drawing", "vector" ], @@ -24032,7 +15148,7 @@ 1 ], "json": { - "objName": "Diver2", + "objName": "Wizard1", "sounds": [ { "soundName": "pop", @@ -24045,11 +15161,12 @@ ], "costumes": [ { - "costumeName": "diver2", + "costumeName": "wizard1", "baseLayerID": -1, - "baseLayerMD5": "248d3e69ada69a64b1077149ef6a931a.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "e085c97691d16f0cc8a595ce1137e26c.svg", + "bitmapResolution": 1, + "rotationCenterX": 134, + "rotationCenterY": 153 } ], "currentCostumeIndex": 0, @@ -24065,48 +15182,41 @@ } }, { - "name": "Dog1", - "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", + "name": "Wizard2", + "md5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", "type": "sprite", "tags": [ - "animals", + "people", + "fantasy", + "castle", "drawing", - "walking", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Dog1", + "objName": "Wizard2", "sounds": [ { - "soundName": "dog1", + "soundName": "pop", "soundID": -1, - "md5": "b15adefc3c12f758b6dc6a045362532f.wav", - "sampleCount": 3672, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "dog1-a", - "baseLayerID": -1, - "baseLayerMD5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", - "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 80 - }, - { - "costumeName": "dog1-b", + "costumeName": "wizard2", "baseLayerID": -1, - "baseLayerMD5": "598f4aa3d8f671375d1d2b3acf753416.svg", + "baseLayerMD5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 80 + "rotationCenterX": 69, + "rotationCenterY": 93 } ], "currentCostumeIndex": 0, @@ -24122,62 +15232,54 @@ } }, { - "name": "Dog2", - "md5": "e921f865b19b27cd99e16a341dbf09c2.svg", + "name": "Zara", + "md5": "ad7b145d46e933125bd9c928d784fcdc.png", "type": "sprite", "tags": [ - "animals", + "people", + "city", "drawing", - "walking", - "vector" + "bitmap" ], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Dog2", + "objName": "Zara", "sounds": [ { - "soundName": "dog1", + "soundName": "pop", "soundID": -1, - "md5": "b15adefc3c12f758b6dc6a045362532f.wav", - "sampleCount": 3672, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "dog2-a", - "baseLayerID": -1, - "baseLayerMD5": "e921f865b19b27cd99e16a341dbf09c2.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "dog2-b", + "costumeName": "zara-a", "baseLayerID": -1, - "baseLayerMD5": "891f2fb7daf79ba8b224a9173eeb0a63.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "ad7b145d46e933125bd9c928d784fcdc.png", + "bitmapResolution": 2, + "rotationCenterX": 50, + "rotationCenterY": 170 }, { - "costumeName": "dog2-c", + "costumeName": "zara-b", "baseLayerID": -1, - "baseLayerMD5": "cd236d5eef4431dea82983ac9eec406b.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "6fba793b512069a67096a82aa85a5c12.png", + "bitmapResolution": 2, + "rotationCenterX": 86, + "rotationCenterY": 168 } ], - "currentCostumeIndex": 0, + "currentCostumeIndex": 1, "scratchX": 0, "scratchY": 0, - "scale": 0.75, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -24187,63 +15289,143 @@ } }, { - "name": "Dog Puppy", - "md5": "fd6c2d1d10a163bc5b7458f7275750f0.png", + "name": "A-block", + "md5": "602a16930a8050e1298e1a0ae844363e.svg", "type": "sprite", "tags": [ - "animals", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Dog Puppy", + "objName": "A-block", "sounds": [ { - "soundName": "dog2", - "soundID": -1, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" - } - ], - "costumes": [ + "format": "adpcm" + }, { - "costumeName": "dog puppy right", - "baseLayerID": -1, - "baseLayerMD5": "fd6c2d1d10a163bc5b7458f7275750f0.png", - "bitmapResolution": 2, - "rotationCenterX": 107, - "rotationCenterY": 103 + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" }, { - "costumeName": "dog puppy sit", - "baseLayerID": -1, - "baseLayerMD5": "00b1589467f939b9c61f666bca2d25d1.png", - "bitmapResolution": 2, - "rotationCenterX": 87, - "rotationCenterY": 112 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "dog puppy side", - "baseLayerID": -1, - "baseLayerMD5": "63c3d6718943ecbf48f94b3b131ae8a4.png", - "bitmapResolution": 2, - "rotationCenterX": 104, - "rotationCenterY": 114 + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" }, { - "costumeName": "dog puppy back", + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "a-block", "baseLayerID": -1, - "baseLayerMD5": "88559ad0334a8a51aca31035068682f6.png", - "bitmapResolution": 2, - "rotationCenterX": 234, - "rotationCenterY": 94 + "baseLayerMD5": "602a16930a8050e1298e1a0ae844363e.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -24259,11 +15441,11 @@ } }, { - "name": "Donut", - "md5": "9e7b4d153421dae04a24571d7e079e85.svg", + "name": "B-block", + "md5": "f8c683cf71660e8ac1f8855599857a25.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -24273,25 +15455,129 @@ 1 ], "json": { - "objName": "Donut", + "objName": "B-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "donut", + "costumeName": "b-block", "baseLayerID": -1, - "baseLayerMD5": "9e7b4d153421dae04a24571d7e079e85.svg", + "baseLayerMD5": "f8c683cf71660e8ac1f8855599857a25.svg", "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 15 + "rotationCenterX": 29, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -24307,48 +15593,143 @@ } }, { - "name": "Dove1", - "md5": "6dde2b880ad6ddeaea2a53821befb86d.svg", + "name": "C-block", + "md5": "f8f4cc686ffc5a4113a99f70b09abd32.svg", "type": "sprite", "tags": [ - "animals", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Dove1", + "objName": "C-block", "sounds": [ { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "dove1-a", - "baseLayerID": -1, - "baseLayerMD5": "6dde2b880ad6ddeaea2a53821befb86d.svg", - "bitmapResolution": 1, - "rotationCenterX": 86, - "rotationCenterY": 59 - }, - { - "costumeName": "dove1-b", + "costumeName": "c-block", "baseLayerID": -1, - "baseLayerMD5": "1c0bc118044d7f6033bc9cd1ef555590.svg", + "baseLayerMD5": "f8f4cc686ffc5a4113a99f70b09abd32.svg", "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 57 + "rotationCenterX": 35, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, @@ -24364,49 +15745,143 @@ } }, { - "name": "Dove2", - "md5": "42251c2649a073052eb4261d644281bb.svg", + "name": "D-block", + "md5": "aee2d71ef0293b33479bff9423d16b67.svg", "type": "sprite", "tags": [ - "animals", - "holiday", - "flying", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Dove2", + "objName": "D-block", "sounds": [ { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "dove2-a", - "baseLayerID": -1, - "baseLayerMD5": "42251c2649a073052eb4261d644281bb.svg", - "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 83 - }, - { - "costumeName": "dove2-b", + "costumeName": "d-block", "baseLayerID": -1, - "baseLayerMD5": "469eb55a437364d831b80937c4ee1ab9.svg", + "baseLayerMD5": "aee2d71ef0293b33479bff9423d16b67.svg", "bitmapResolution": 1, - "rotationCenterX": 100, - "rotationCenterY": 82 + "rotationCenterX": 31, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -24422,112 +15897,143 @@ } }, { - "name": "Dragon", - "md5": "ee0082b436d6d5dc3de33047166e7bf2.svg", + "name": "E-block", + "md5": "16c6257316ff94cc7539ccdfc24e5fb8.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", - "flying", - "castle", "vector" ], "info": [ 0, - 2, - 0 + 1, + 1 ], "json": { - "objName": "Dragon", - "costumes": [ + "objName": "E-block", + "sounds": [ { - "costumeName": "dragon1-a", - "baseLayerID": -1, - "baseLayerMD5": "ee0082b436d6d5dc3de33047166e7bf2.svg", - "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 60 + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "dragon1-b", - "baseLayerID": -1, - "baseLayerMD5": "bb58ce36997fa205a86a085f202837fd.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 56 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum-Bass", - "md5": "3308e038214f5a4adc53076a9fee9021.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 3 - ], - "json": { - "objName": "Drum-Bass", - "sounds": [ + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, { - "soundName": "drum bass1", - "soundID": -1, - "md5": "48328c874353617451e4c7902cc82817.wav", - "sampleCount": 6528, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "drum bass2", - "soundID": -1, - "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", - "sampleCount": 3791, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, "format": "adpcm" }, { - "soundName": "drum bass3", - "soundID": -1, - "md5": "c21704337b16359ea631b5f8eb48f765.wav", - "sampleCount": 8576, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "drum bass-a", - "baseLayerID": -1, - "baseLayerMD5": "3308e038214f5a4adc53076a9fee9021.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 46 - }, - { - "costumeName": "drum bass-b", + "costumeName": "e-block", "baseLayerID": -1, - "baseLayerMD5": "5febb3df727fb6624946e807a665b866.svg", + "baseLayerMD5": "16c6257316ff94cc7539ccdfc24e5fb8.svg", "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 46 + "rotationCenterX": 25, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -24543,72 +16049,143 @@ } }, { - "name": "Drum-Conga", - "md5": "b3da94523b6d3df2dd30602399599ab4.svg", + "name": "F-block", + "md5": "34c090c1f573c569332ead68cb99b595.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 4 + 1, + 1 ], "json": { - "objName": "Drum-Conga", + "objName": "F-block", "sounds": [ { - "soundName": "high conga", - "soundID": -1, - "md5": "16144544de90e98a92a265d4fc3241ea.wav", - "sampleCount": 8192, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "low conga", - "soundID": -1, - "md5": "0b6f94487cd8a1cf0bb77e15966656c3.wav", - "sampleCount": 8384, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "muted conga", - "soundID": -1, - "md5": "1d4abbe3c9bfe198a88badb10762de75.wav", - "sampleCount": 4544, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "tap conga", - "soundID": -1, - "md5": "fd9a67157f57f9cc6fe3cdce38a6d4a8.wav", - "sampleCount": 6880, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "drums conga-a", - "baseLayerID": -1, - "baseLayerMD5": "b3da94523b6d3df2dd30602399599ab4.svg", - "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 51 - }, - { - "costumeName": "drums conga-b", + "costumeName": "f-block", "baseLayerID": -1, - "baseLayerMD5": "d4398062ed6e09927ab52823255186d3.svg", + "baseLayerMD5": "34c090c1f573c569332ead68cb99b595.svg", "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 79 + "rotationCenterX": 23, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -24624,64 +16201,143 @@ } }, { - "name": "Drum-Snare", - "md5": "868f700de73a35c4d6fa4c93507c348d.svg", + "name": "G-block", + "md5": "8bb2382627004eb08ff10ea8171cc724.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 3 + 1, + 1 ], "json": { - "objName": "Drum-Snare", + "objName": "G-block", "sounds": [ { - "soundName": "tap snare", - "soundID": -1, - "md5": "d55b3954d72c6275917f375e49b502f3.wav", - "sampleCount": 3296, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "sidestick snare", - "soundID": -1, - "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav", - "sampleCount": 2336, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "flam snare", - "soundID": -1, - "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav", - "sampleCount": 4416, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "drum snare-a", - "baseLayerID": -1, - "baseLayerMD5": "868f700de73a35c4d6fa4c93507c348d.svg", - "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 37 - }, - { - "costumeName": "drum snare-b", + "costumeName": "g-block", "baseLayerID": -1, - "baseLayerMD5": "93738cb485ef57cbd4b9bff386d0bba2.svg", + "baseLayerMD5": "8bb2382627004eb08ff10ea8171cc724.svg", "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 59 + "rotationCenterX": 28, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -24697,72 +16353,143 @@ } }, { - "name": "Drum-Tabla", - "md5": "68ce53b53fcc68744584c28d20144c4f.svg", + "name": "H-block", + "md5": "f1578807d4a124fc02b639a8febeaab3.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 4 + 1, + 1 ], "json": { - "objName": "Drum-Tabla", + "objName": "H-block", "sounds": [ { - "soundName": "hi na tabla", - "soundID": -1, - "md5": "35b42d98c43404a5b1b52fb232a62bd7.wav", - "sampleCount": 4096, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "hi tun tabla", - "soundID": -1, - "md5": "da734693dfa6a9a7eccdc7f9a0ca9840.wav", - "sampleCount": 18656, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "lo gliss tabla", - "soundID": -1, - "md5": "d7cd24689737569c93e7ea7344ba6b0e.wav", - "sampleCount": 7008, - "rate": 22050, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" }, { - "soundName": "lo geh tabla", - "soundID": -1, - "md5": "9205359ab69d042ed3da8a160a651690.wav", - "sampleCount": 30784, + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "tabla-a", - "baseLayerID": -1, - "baseLayerMD5": "68ce53b53fcc68744584c28d20144c4f.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 45 - }, - { - "costumeName": "tabla-b", + "costumeName": "h-block", "baseLayerID": -1, - "baseLayerMD5": "01b6ffb8691d32be10fabc77ddfb55b0.svg", + "baseLayerMD5": "f1578807d4a124fc02b639a8febeaab3.svg", "bitmapResolution": 1, - "rotationCenterX": 78, - "rotationCenterY": 48 + "rotationCenterX": 27, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -24778,56 +16505,143 @@ } }, { - "name": "Drum1", - "md5": "daad8bc865f55200844dbce476d2f1e9.svg", + "name": "I-block", + "md5": "341bc70442886d6fdf959f2a97a63554.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 2 + 1, + 1 ], "json": { - "objName": "Drum1", + "objName": "I-block", "sounds": [ { - "soundName": "high tom", - "soundID": -1, - "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", - "sampleCount": 12320, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "low tom", - "soundID": -1, - "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", - "sampleCount": 20000, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "drum1-a", - "baseLayerID": -1, - "baseLayerMD5": "daad8bc865f55200844dbce476d2f1e9.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 44 - }, - { - "costumeName": "drum1-b", + "costumeName": "i-block", "baseLayerID": -1, - "baseLayerMD5": "8a2e9596b02ecdc195d76c1f34a48f76.svg", + "baseLayerMD5": "341bc70442886d6fdf959f2a97a63554.svg", "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 61 + "rotationCenterX": 19, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -24843,56 +16657,143 @@ } }, { - "name": "Drum2", - "md5": "68baa189ac7afb9426db1818aa88be8e.svg", + "name": "J-block", + "md5": "4b420cce964beedf2c1dc43faa59fdec.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 2 + 1, + 1 ], "json": { - "objName": "Drum2", + "objName": "J-block", "sounds": [ { - "soundName": "high tom", - "soundID": -1, - "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", - "sampleCount": 12320, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "low tom", - "soundID": -1, - "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", - "sampleCount": 20000, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "drum2-a", - "baseLayerID": -1, - "baseLayerMD5": "68baa189ac7afb9426db1818aa88be8e.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 39 - }, - { - "costumeName": "drum2-b", + "costumeName": "j-block", "baseLayerID": -1, - "baseLayerMD5": "4a58fe0f173104aab03aaccdd3ce5280.svg", + "baseLayerMD5": "4b420cce964beedf2c1dc43faa59fdec.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 54 + "rotationCenterX": 25, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -24908,11 +16809,11 @@ } }, { - "name": "Duck", - "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", + "name": "K-block", + "md5": "19601cc33449813aa93a47c63167e5c1.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -24922,25 +16823,129 @@ 1 ], "json": { - "objName": "Duck", + "objName": "K-block", "sounds": [ { - "soundName": "duck", - "soundID": -1, - "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", - "sampleCount": 5792, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "duck", + "costumeName": "k-block", "baseLayerID": -1, - "baseLayerMD5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", + "baseLayerMD5": "19601cc33449813aa93a47c63167e5c1.svg", "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 59 + "rotationCenterX": 24, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -24956,12 +16961,11 @@ } }, { - "name": "Earth", - "md5": "814197522984a302972998b1a7f92d91.svg", + "name": "L-block", + "md5": "87358e3c9b9f5be4376253ce08d0192d.svg", "type": "sprite", "tags": [ - "things", - "space", + "letters", "drawing", "vector" ], @@ -24971,24 +16975,129 @@ 1 ], "json": { - "objName": "Earth", + "objName": "L-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "earth", + "costumeName": "l-block", "baseLayerID": -1, - "baseLayerMD5": "814197522984a302972998b1a7f92d91.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "87358e3c9b9f5be4376253ce08d0192d.svg", + "bitmapResolution": 1, + "rotationCenterX": 26, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -25004,48 +17113,143 @@ } }, { - "name": "Elephant", - "md5": "b3515b3805938b0fae4e527aa0b4524e.svg", + "name": "M-block", + "md5": "7ba0642be1f0080c0d273ea96e29b1e8.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "nature", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Elephant", + "objName": "M-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "elephant-a ", - "baseLayerID": -1, - "baseLayerMD5": "b3515b3805938b0fae4e527aa0b4524e.svg", - "bitmapResolution": 1, - "rotationCenterX": 107, - "rotationCenterY": 33 - }, - { - "costumeName": "elephant-b ", + "costumeName": "m-block", "baseLayerID": -1, - "baseLayerMD5": "bce91fa266220d3679a4c19c4e38b1f7.svg", + "baseLayerMD5": "7ba0642be1f0080c0d273ea96e29b1e8.svg", "bitmapResolution": 1, - "rotationCenterX": 95, - "rotationCenterY": 40 + "rotationCenterX": 35, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -25061,13 +17265,13 @@ } }, { - "name": "Fire hydrant", - "md5": "5542c53bb0ba87b39eba6ff743b8115c.png", + "name": "N-block", + "md5": "6c1fbc57821744bd9356ce9a21ed70f7.svg", "type": "sprite", "tags": [ - "things", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -25075,24 +17279,129 @@ 1 ], "json": { - "objName": "Fire hydrant", + "objName": "N-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fire hydrant", + "costumeName": "n-block", "baseLayerID": -1, - "baseLayerMD5": "5542c53bb0ba87b39eba6ff743b8115c.png", - "rotationCenterX": 40, - "rotationCenterY": 83 + "baseLayerMD5": "6c1fbc57821744bd9356ce9a21ed70f7.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -25108,13 +17417,12 @@ } }, { - "name": "Fish1", - "md5": "df78f8195f72372846d96dc70cb0ad95.svg", + "name": "O-block", + "md5": "e88638200a73e167d0e266a343019cec.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "underwater", "vector" ], "info": [ @@ -25123,25 +17431,129 @@ 1 ], "json": { - "objName": "Fish1", + "objName": "O-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fish1", + "costumeName": "o-block", "baseLayerID": -1, - "baseLayerMD5": "df78f8195f72372846d96dc70cb0ad95.svg", + "baseLayerMD5": "e88638200a73e167d0e266a343019cec.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 32, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -25157,13 +17569,12 @@ } }, { - "name": "Fish2", - "md5": "f3dd9cb79cce497a90900241cf726367.svg", + "name": "P-block", + "md5": "ad2fc3a1c6538678915633a11ab6ec73.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "underwater", "vector" ], "info": [ @@ -25172,25 +17583,129 @@ 1 ], "json": { - "objName": "Fish2", + "objName": "P-block", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fish2", + "costumeName": "p-block", "baseLayerID": -1, - "baseLayerMD5": "f3dd9cb79cce497a90900241cf726367.svg", + "baseLayerMD5": "ad2fc3a1c6538678915633a11ab6ec73.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 18, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -25206,13 +17721,12 @@ } }, { - "name": "Fish3", - "md5": "aec949cefb15ddd1330f3b633734d4d3.svg", + "name": "Q-block", + "md5": "64da9da8684c74deb567dbdb661d3a52.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "underwater", "vector" ], "info": [ @@ -25221,25 +17735,129 @@ 1 ], "json": { - "objName": "Fish3", + "objName": "Q-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fish3", + "costumeName": "q-block", "baseLayerID": -1, - "baseLayerMD5": "aec949cefb15ddd1330f3b633734d4d3.svg", + "baseLayerMD5": "64da9da8684c74deb567dbdb661d3a52.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 26, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -25255,11 +17873,11 @@ } }, { - "name": "Flower Shape", - "md5": "7905272bf89ee61cd9d3680a67732815.svg", + "name": "R-block", + "md5": "73e8d46f7475476d8cb4cfcfc75ee50d.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -25269,24 +17887,129 @@ 1 ], "json": { - "objName": "Flower Shape", + "objName": "R-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "flower shape", + "costumeName": "r-block", "baseLayerID": -1, - "baseLayerMD5": "7905272bf89ee61cd9d3680a67732815.svg", - "rotationCenterX": 39, - "rotationCenterY": 41 + "baseLayerMD5": "73e8d46f7475476d8cb4cfcfc75ee50d.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -25302,49 +18025,146 @@ } }, { - "name": "Football", - "md5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", + "name": "S-block", + "md5": "9feb5593fed51e88dbb3128cfc290d29.svg", "type": "sprite", "tags": [ - "people", - "sports", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Football", + "objName": "S-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "football running", - "baseLayerID": -1, - "baseLayerMD5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", - "rotationCenterX": 47, - "rotationCenterY": 100 - }, - { - "costumeName": "football standing", + "costumeName": "s-block", "baseLayerID": -1, - "baseLayerMD5": "1f57154842f68aa55577edc90a6f2b32.png", - "rotationCenterX": 37, - "rotationCenterY": 100 + "baseLayerMD5": "9feb5593fed51e88dbb3128cfc290d29.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 30 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -25357,13 +18177,13 @@ } }, { - "name": "Fortune Cookie", - "md5": "d47f0be24acf78130af2e03572a3f9d3.png", + "name": "T-block", + "md5": "d29c1caf5cf195740c38f279e82a77a4.svg", "type": "sprite", "tags": [ - "things", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -25371,24 +18191,129 @@ 1 ], "json": { - "objName": "Fortune Cookie", + "objName": "T-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fortunecookie", + "costumeName": "t-block", "baseLayerID": -1, - "baseLayerMD5": "d47f0be24acf78130af2e03572a3f9d3.png", - "rotationCenterX": 30, - "rotationCenterY": 31 + "baseLayerMD5": "d29c1caf5cf195740c38f279e82a77a4.svg", + "bitmapResolution": 1, + "rotationCenterX": 25, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -25404,11 +18329,11 @@ } }, { - "name": "Fox", - "md5": "dd19959dc4d453813299f496124d50ff.svg", + "name": "U-block", + "md5": "faef46b7bf589c36300142f6f03c5d32.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -25418,25 +18343,129 @@ 1 ], "json": { - "objName": "Fox", + "objName": "U-block", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fox", + "costumeName": "u-block", "baseLayerID": -1, - "baseLayerMD5": "dd19959dc4d453813299f496124d50ff.svg", + "baseLayerMD5": "faef46b7bf589c36300142f6f03c5d32.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 28, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -25452,11 +18481,11 @@ } }, { - "name": "Frog", - "md5": "285483a688eed2ff8010c65112f99c41.svg", + "name": "V-block", + "md5": "65e2f4821ab084827e22920acb61c92b.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -25466,24 +18495,129 @@ 1 ], "json": { - "objName": "Frog", + "objName": "V-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "frog", + "costumeName": "v-block", "baseLayerID": -1, - "baseLayerMD5": "285483a688eed2ff8010c65112f99c41.svg", - "rotationCenterX": 48, - "rotationCenterY": 30 + "baseLayerMD5": "65e2f4821ab084827e22920acb61c92b.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -25499,13 +18633,13 @@ } }, { - "name": "Fruit Platter", - "md5": "c6e2f673debcff91de8e3749ddf674b9.png", + "name": "W-block", + "md5": "5ab197b4f70b2f98a3658c7ccdc3351d.svg", "type": "sprite", "tags": [ - "things", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -25513,24 +18647,129 @@ 1 ], "json": { - "objName": "Fruit Platter", + "objName": "W-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "fruit_platter", + "costumeName": "w-block", "baseLayerID": -1, - "baseLayerMD5": "c6e2f673debcff91de8e3749ddf674b9.png", - "rotationCenterX": 75, - "rotationCenterY": 40 + "baseLayerMD5": "5ab197b4f70b2f98a3658c7ccdc3351d.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -25546,11 +18785,11 @@ } }, { - "name": "Fruit Salad", - "md5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", + "name": "X-block", + "md5": "cb9dff35f05e823d954e47e4a717a48c.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -25560,72 +18799,129 @@ 1 ], "json": { - "objName": "Fruit Salad", + "objName": "X-block", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, { - "costumeName": "fruitsalad", - "baseLayerID": -1, - "baseLayerMD5": "dbf8cc34f7ca18b4a008d2890dba56b7.svg", - "rotationCenterX": 30, - "rotationCenterY": 22 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ghost1", - "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Ghost1", - "sounds": [ + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "ghost1 ", + "costumeName": "x-block", "baseLayerID": -1, - "baseLayerMD5": "c88579c578f2d171de78612f2ff9c9d9.svg", - "rotationCenterX": 60, - "rotationCenterY": 63 + "baseLayerMD5": "cb9dff35f05e823d954e47e4a717a48c.svg", + "bitmapResolution": 1, + "rotationCenterX": 25, + "rotationCenterY": 32 } ], "currentCostumeIndex": 0, @@ -25641,48 +18937,143 @@ } }, { - "name": "Ghost2", - "md5": "607be245da950af1a4e4d79acfda46e3.svg", + "name": "Y-block", + "md5": "4c13c440bcb35c8c3aa6226374fced3f.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", - "castle", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Ghost2", + "objName": "Y-block", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "ghost2-a", - "baseLayerID": -1, - "baseLayerMD5": "607be245da950af1a4e4d79acfda46e3.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ghost2-b", + "costumeName": "y-block", "baseLayerID": -1, - "baseLayerMD5": "b9e2ebbe17c617ac182abd8bc1627693.svg", + "baseLayerMD5": "4c13c440bcb35c8c3aa6226374fced3f.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 26, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, @@ -25698,95 +19089,143 @@ } }, { - "name": "Ghoul", - "md5": "70ef3e78079cf4a1c9abf32b5d982b71.svg", + "name": "Z-block", + "md5": "0ccff1898f1bf1b25333d581db09fae2.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", - "castle", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Ghoul", + "objName": "Z-block", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "ghoul-a", - "baseLayerID": -1, - "baseLayerMD5": "70ef3e78079cf4a1c9abf32b5d982b71.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "ghoul-b", - "baseLayerID": -1, - "baseLayerMD5": "6e962f1248f7a7201eb24d376d804093.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Gift", - "md5": "abeae2217b3ce67b1ff761cd7a89274d.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 0 - ], - "json": { - "objName": "Gift", "costumes": [ { - "costumeName": "gift-a", - "baseLayerID": -1, - "baseLayerMD5": "abeae2217b3ce67b1ff761cd7a89274d.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 25 - }, - { - "costumeName": "gift-b", + "costumeName": "z-block", "baseLayerID": -1, - "baseLayerMD5": "5cae973c98f2d98b51e6c6b3c9602f8c.svg", + "baseLayerMD5": "0ccff1898f1bf1b25333d581db09fae2.svg", "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 26 + "rotationCenterX": 24, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -25802,64 +19241,143 @@ } }, { - "name": "Giga", - "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", + "name": "A-Glow", + "md5": "d5aa299350c24c747200a64b63b1aa52.svg", "type": "sprite", "tags": [ - "fantasy", - "space", + "letters", "drawing", "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Giga", + "objName": "A-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "giga-a", - "baseLayerID": -1, - "baseLayerMD5": "93cb048a1d199f92424b9c097fa5fa38.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 96 }, { - "costumeName": "giga-b", - "baseLayerID": -1, - "baseLayerMD5": "528613711a7eae3a929025be04db081c.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 96 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "giga-c", - "baseLayerID": -1, - "baseLayerMD5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 96 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "giga-d", + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "A-glow", "baseLayerID": -1, - "baseLayerMD5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", + "baseLayerMD5": "d5aa299350c24c747200a64b63b1aa52.svg", "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 96 + "rotationCenterX": 36, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -25875,61 +19393,143 @@ } }, { - "name": "Giga walking", - "md5": "f76bc420011db2cdb2de378c1536f6da.svg", + "name": "B-Glow", + "md5": "a2e95f268a6cab03f3e94b3b0b792d83.svg", "type": "sprite", "tags": [ - "fantasy", - "space", + "letters", "drawing", - "walking", "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Giga walking", + "objName": "B-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "Giga walk1", - "baseLayerID": -1, - "baseLayerMD5": "f76bc420011db2cdb2de378c1536f6da.svg", - "rotationCenterX": 70, - "rotationCenterY": 107 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "Giga walk2", - "baseLayerID": -1, - "baseLayerMD5": "43b5874e8a54f93bd02727f0abf6905b.svg", - "rotationCenterX": 71, - "rotationCenterY": 107 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "Giga walk3", - "baseLayerID": -1, - "baseLayerMD5": "9aab3bbb375765391978be4f6d478ab3.svg", - "rotationCenterX": 71, - "rotationCenterY": 107 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "Giga walk4", + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "B-glow", "baseLayerID": -1, - "baseLayerMD5": "22e4ae40919cf0fe6b4d7649d14a6e71.svg", - "rotationCenterX": 73, - "rotationCenterY": 110 + "baseLayerMD5": "a2e95f268a6cab03f3e94b3b0b792d83.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 35 } ], "currentCostumeIndex": 0, @@ -25945,53 +19545,149 @@ } }, { - "name": "Glass Water", - "md5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", + "name": "C-Glow", + "md5": "9779a4a40934f04a4bf84920b258d7c9.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Glass Water", + "objName": "C-Glow", "sounds": [ { - "soundName": "water drop", - "soundID": -1, - "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", - "sampleCount": 8136, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "glass water-a", - "baseLayerID": -1, - "baseLayerMD5": "c364b9e1f4bcdc61705032d89eaaa0a1.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - }, - { - "costumeName": "glass water-b", + "costumeName": "C-glow", "baseLayerID": -1, - "baseLayerMD5": "bc07ce6a2004ac91ce704531a1c526e5.svg", + "baseLayerMD5": "9779a4a40934f04a4bf84920b258d7c9.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 + "rotationCenterX": 27, + "rotationCenterY": 35 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.6, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -26001,12 +19697,11 @@ } }, { - "name": "Glasses", - "md5": "5fcf716b53f223bc86b10ab0eca3e162.svg", + "name": "D-Glow", + "md5": "3555b8bbbbcdc00354bf6fa81ac7042f.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26016,25 +19711,129 @@ 1 ], "json": { - "objName": "Glasses", + "objName": "D-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "glasses", + "costumeName": "D-glow", "baseLayerID": -1, - "baseLayerMD5": "5fcf716b53f223bc86b10ab0eca3e162.svg", + "baseLayerMD5": "3555b8bbbbcdc00354bf6fa81ac7042f.svg", "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 9 + "rotationCenterX": 33, + "rotationCenterY": 35 } ], "currentCostumeIndex": 0, @@ -26043,202 +19842,150 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Gobo", - "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "name": "E-Glow", + "md5": "44dbc655d5ac9f13618473848e23484e.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Gobo", + "objName": "E-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "gobo-a", - "baseLayerID": -1, - "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 }, { - "costumeName": "gobo-b", - "baseLayerID": -1, - "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "gobo-c", - "baseLayerID": -1, - "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Green Flag", - "md5": "173e20ac537d2c278ed621be3db3fc87.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Green Flag", - "costumes": [ - { - "costumeName": "green flag", - "baseLayerID": -1, - "baseLayerMD5": "173e20ac537d2c278ed621be3db3fc87.svg", - "bitmapResolution": 1, - "rotationCenterX": 70, - "rotationCenterY": 30 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Guitar", - "md5": "dfa85e2a962b725ee53f61cea2edc1fb.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Guitar", - "sounds": [ + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, { - "soundName": "C guitar", - "soundID": -1, - "md5": "22baa07795a9a524614075cdea543793.wav", - "sampleCount": 44864, + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "D guitar", - "soundID": -1, - "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav", - "sampleCount": 41120, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "E guitar", - "soundID": -1, - "md5": "4b5d1da83e59bf35578324573c991666.wav", - "sampleCount": 38400, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "F guitar", - "soundID": -1, - "md5": "b51d086aeb1921ec405561df52ecbc50.wav", - "sampleCount": 36416, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "G guitar", - "soundID": -1, - "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav", - "sampleCount": 33600, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "A guitar", - "soundID": -1, - "md5": "ee753e87d212d4b2fb650ca660f1e839.wav", - "sampleCount": 31872, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "B guitar", - "soundID": -1, - "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav", - "sampleCount": 29504, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" }, { - "soundName": "C2 guitar", - "soundID": -1, - "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav", - "sampleCount": 27712, + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" } ], "costumes": [ { - "costumeName": "guitar", + "costumeName": "E-glow", "baseLayerID": -1, - "baseLayerMD5": "dfa85e2a962b725ee53f61cea2edc1fb.svg", + "baseLayerMD5": "44dbc655d5ac9f13618473848e23484e.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 98 + "rotationCenterX": 34, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -26254,96 +20001,143 @@ } }, { - "name": "Guitar-Bass", - "md5": "83cf122ec4a291e2a17910f718b583a5.svg", + "name": "F-Glow", + "md5": "dec417e749e43d7de3985155f5f5a7a0.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, 1, - 8 + 1 ], "json": { - "objName": "Guitar-Bass", + "objName": "F-Glow", "sounds": [ { - "soundName": "C elec bass", - "soundID": -1, - "md5": "69eee3d038ea0f1c34ec9156a789236d.wav", - "sampleCount": 5216, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "D elec bass", - "soundID": -1, - "md5": "67a6d1aa68233a2fa641aee88c7f051f.wav", - "sampleCount": 5568, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "E elec bass", - "soundID": -1, - "md5": "0704b8ceabe54f1dcedda8c98f1119fd.wav", - "sampleCount": 5691, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "F elec bass", - "soundID": -1, - "md5": "45eedb4ce62a9cbbd2207824b94a4641.wav", - "sampleCount": 5312, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "G elec bass", - "soundID": -1, - "md5": "97b187d72219b994a6ef6a5a6b09605c.wav", - "sampleCount": 5568, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "A elec bass", - "soundID": -1, - "md5": "5cb46ddd903fc2c9976ff881df9273c9.wav", - "sampleCount": 5920, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "B elec bass", - "soundID": -1, - "md5": "5a0701d0a914223b5288300ac94e90e4.wav", - "sampleCount": 6208, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "C2 elec bass", - "soundID": -1, - "md5": "56fc995b8860e713c5948ecd1c2ae572.wav", - "sampleCount": 5792, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "guitar bass", + "costumeName": "F-glow", "baseLayerID": -1, - "baseLayerMD5": "83cf122ec4a291e2a17910f718b583a5.svg", + "baseLayerMD5": "dec417e749e43d7de3985155f5f5a7a0.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 145 + "rotationCenterX": 35, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -26359,96 +20153,143 @@ } }, { - "name": "Guitar-Electric", - "md5": "18d7b47368ba1ead0d1ca436b8369211.svg", + "name": "G-Glow", + "md5": "cf4aa465cd8fb7049cc571d7546a7eb1.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, 1, - 8 + 1 ], "json": { - "objName": "Guitar-Electric", + "objName": "G-Glow", "sounds": [ { - "soundName": "C elec guitar", - "soundID": -1, - "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav", - "sampleCount": 44100, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "D elec guitar", - "soundID": -1, - "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav", - "sampleCount": 44100, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "E elec guitar", - "soundID": -1, - "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav", - "sampleCount": 44100, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "F elec guitar", - "soundID": -1, - "md5": "5eb00f15f21f734986aa45156d44478d.wav", - "sampleCount": 44100, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "G elec guitar", - "soundID": -1, - "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav", - "sampleCount": 44100, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "A elec guitar", - "soundID": -1, - "md5": "fa5f7fea601e9368dd68449d9a54c995.wav", - "sampleCount": 44100, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "B elec guitar", - "soundID": -1, - "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav", - "sampleCount": 44100, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "C2 elec guitar", - "soundID": -1, - "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav", - "sampleCount": 44100, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "guitar electric", + "costumeName": "G-glow", "baseLayerID": -1, - "baseLayerMD5": "18d7b47368ba1ead0d1ca436b8369211.svg", + "baseLayerMD5": "cf4aa465cd8fb7049cc571d7546a7eb1.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 114 + "rotationCenterX": 32, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -26464,57 +20305,143 @@ } }, { - "name": "Hannah", - "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png", + "name": "H-Glow", + "md5": "8d9bd5f00ea1ac6f92d0f97ee491b0f3.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", - "bitmap", - "sports" + "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Hannah", + "objName": "H-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "hannah-a", - "baseLayerID": -1, - "baseLayerMD5": "b983d99560313e38b4b3cd36cbd5f0d1.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 126 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "hannah-b", - "baseLayerID": -1, - "baseLayerMD5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png", - "bitmapResolution": 2, - "rotationCenterX": 48, - "rotationCenterY": 160 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "hannah-c", + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "H-glow", "baseLayerID": -1, - "baseLayerMD5": "5fdce07935156bbcf943793fa84e826c.png", - "bitmapResolution": 2, - "rotationCenterX": 170, - "rotationCenterY": 130 + "baseLayerMD5": "8d9bd5f00ea1ac6f92d0f97ee491b0f3.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 46 } ], "currentCostumeIndex": 0, @@ -26530,12 +20457,11 @@ } }, { - "name": "Hat", - "md5": "b3beb1f52d371428d70b65a0c4c5c001.svg", + "name": "I-Glow", + "md5": "0e86de55840103dcd50199ab2b765de7.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26545,25 +20471,129 @@ 1 ], "json": { - "objName": "Hat", + "objName": "I-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "Hat", + "costumeName": "I-glow", "baseLayerID": -1, - "baseLayerMD5": "b3beb1f52d371428d70b65a0c4c5c001.svg", + "baseLayerMD5": "0e86de55840103dcd50199ab2b765de7.svg", "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 60 + "rotationCenterX": 21, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -26572,19 +20602,18 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Hat Beanie", - "md5": "3271da33e4108ed08a303c2244739fbf.svg", + "name": "J-Glow", + "md5": "b3832145eacc39f91bd3a9a6673fa05c.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26594,25 +20623,129 @@ 1 ], "json": { - "objName": "Hat Beanie", + "objName": "J-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "hat beanie", + "costumeName": "J-glow", "baseLayerID": -1, - "baseLayerMD5": "3271da33e4108ed08a303c2244739fbf.svg", + "baseLayerMD5": "b3832145eacc39f91bd3a9a6673fa05c.svg", "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 19 + "rotationCenterX": 29, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -26621,19 +20754,18 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Hat Party1", - "md5": "70a7f535d8857cf9175492415361c361.svg", + "name": "K-Glow", + "md5": "f4e37a7552ba05e995613211a7146de5.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26643,25 +20775,129 @@ 1 ], "json": { - "objName": "Hat Party1", + "objName": "K-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "partyhat1", + "costumeName": "K-glow", "baseLayerID": -1, - "baseLayerMD5": "70a7f535d8857cf9175492415361c361.svg", + "baseLayerMD5": "f4e37a7552ba05e995613211a7146de5.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 38, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, @@ -26677,12 +20913,11 @@ } }, { - "name": "Hat Party2", - "md5": "9b7a84fe3e50621752917e4e484a1e2f.svg", + "name": "L-Glow", + "md5": "a75e45773ea6afaf8ae44f79f936fc82.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26692,25 +20927,129 @@ 1 ], "json": { - "objName": "Hat Party2", + "objName": "L-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" - } - ], - "costumes": [ + "format": "adpcm" + }, { - "costumeName": "hat party2-a", + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "L-glow", "baseLayerID": -1, - "baseLayerMD5": "9b7a84fe3e50621752917e4e484a1e2f.svg", + "baseLayerMD5": "a75e45773ea6afaf8ae44f79f936fc82.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 33, + "rotationCenterY": 35 } ], "currentCostumeIndex": 0, @@ -26726,54 +21065,149 @@ } }, { - "name": "Hat Winter", - "md5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", + "name": "M-Glow", + "md5": "219b06faa5b816347165450d148213b4.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, 1, - 2 + 1 ], "json": { - "objName": "Hat Winter", + "objName": "M-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "xylo3", - "soundID": -1, - "md5": "3395cade6d7c0cc9ce73a8c12f40319b.wav", - "sampleCount": 209502, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "hat winter", + "costumeName": "M-glow", "baseLayerID": -1, - "baseLayerMD5": "6c2ee1b97f6ec2b3457a25a3975a2009.svg", + "baseLayerMD5": "219b06faa5b816347165450d148213b4.svg", "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 101 + "rotationCenterX": 42, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.9, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -26783,13 +21217,11 @@ } }, { - "name": "Hat Wizard", - "md5": "581571e8c8f5adeb01565e12b1b77b58.svg", + "name": "N-Glow", + "md5": "4b724479fb3b2184fd8be6f83fb20e54.svg", "type": "sprite", "tags": [ - "dress-up", - "fantasy", - "things", + "letters", "drawing", "vector" ], @@ -26799,25 +21231,129 @@ 1 ], "json": { - "objName": "Hat Wizard", + "objName": "N-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "hat wizard", + "costumeName": "N-glow", "baseLayerID": -1, - "baseLayerMD5": "581571e8c8f5adeb01565e12b1b77b58.svg", + "baseLayerMD5": "4b724479fb3b2184fd8be6f83fb20e54.svg", "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 69 + "rotationCenterX": 37, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -26833,12 +21369,11 @@ } }, { - "name": "Headband", - "md5": "961148d1605a1bd8ce80ed8d39e831c2.svg", + "name": "O-Glow", + "md5": "38b2b342659adc6fa289090975e0e71d.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -26848,25 +21383,129 @@ 1 ], "json": { - "objName": "Headband", + "objName": "O-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "headband", + "costumeName": "O-glow", "baseLayerID": -1, - "baseLayerMD5": "961148d1605a1bd8ce80ed8d39e831c2.svg", + "baseLayerMD5": "38b2b342659adc6fa289090975e0e71d.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 43 + "rotationCenterX": 29, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -26875,184 +21514,156 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Heart", - "md5": "6e79e087c866a016f99ee482e1aeba47.svg", + "name": "P-Glow", + "md5": "1cfa849cc967069730b7e9d0809c9dc1.svg", "type": "sprite", "tags": [ - "things", - "flying", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Heart", + "objName": "P-Glow", "sounds": [ { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, - "rate": 22050, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "heart red", - "baseLayerID": -1, - "baseLayerMD5": "6e79e087c866a016f99ee482e1aeba47.svg", - "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 56 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "heart purple", - "baseLayerID": -1, - "baseLayerMD5": "b15362bb6b02a59e364db9081ccf19aa.svg", - "bitmapResolution": 1, - "rotationCenterX": 66, - "rotationCenterY": 62 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart Candy", - "md5": "d448acd247f10f32bef7823cd433f928.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Heart Candy", - "sounds": [ + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "heart love it", - "baseLayerID": -1, - "baseLayerMD5": "d448acd247f10f32bef7823cd433f928.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" }, { - "costumeName": "heart code", - "baseLayerID": -1, - "baseLayerMD5": "497c5df9e02467202ff93096dccaf91f.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "heart sweet", - "baseLayerID": -1, - "baseLayerMD5": "a39d78d33b051e8b12a4b2a10d77b249.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "heart smile", - "baseLayerID": -1, - "baseLayerMD5": "74a8f75d139d330b715787edbbacd83d.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart Face", - "md5": "4ab84263da32069cf97cc0fa52729a0d.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Heart Face", - "sounds": [ + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "heart face", + "costumeName": "P-glow", "baseLayerID": -1, - "baseLayerMD5": "4ab84263da32069cf97cc0fa52729a0d.svg", + "baseLayerMD5": "1cfa849cc967069730b7e9d0809c9dc1.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 52 + "rotationCenterX": 32, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.55, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -27062,12 +21673,11 @@ } }, { - "name": "Heart Scratch", - "md5": "2bfa5c3b41d4be160ab0c157ce0f96a9.svg", + "name": "Q-Glow", + "md5": "9d35979e9404ac234301269fcd7de288.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], @@ -27077,31 +21687,135 @@ 1 ], "json": { - "objName": "Heart Scratch", + "objName": "Q-Glow", "sounds": [ { - "soundName": "dance snare beat", - "soundID": -1, - "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", - "sampleCount": 176401, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "heart scratch", + "costumeName": "Q-glow", "baseLayerID": -1, - "baseLayerMD5": "2bfa5c3b41d4be160ab0c157ce0f96a9.svg", + "baseLayerMD5": "9d35979e9404ac234301269fcd7de288.svg", "bitmapResolution": 1, - "rotationCenterX": 81, - "rotationCenterY": 77 + "rotationCenterX": 33, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.55, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -27111,15 +21825,13 @@ } }, { - "name": "Helicopter", - "md5": "8847e2d3383906dbabbf7ffa98945a7b.png", + "name": "R-Glow", + "md5": "fc067ee076ecaba8430ccd54d9414c1b.svg", "type": "sprite", "tags": [ - "transportation", - "flying", - "city", + "letters", "drawing", - "bitmap" + "vector" ], "info": [ 0, @@ -27127,24 +21839,129 @@ 1 ], "json": { - "objName": "Helicopter", + "objName": "R-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "helicopter", + "costumeName": "R-glow", "baseLayerID": -1, - "baseLayerMD5": "8847e2d3383906dbabbf7ffa98945a7b.png", - "rotationCenterX": 90, - "rotationCenterY": 64 + "baseLayerMD5": "fc067ee076ecaba8430ccd54d9414c1b.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -27160,105 +21977,143 @@ } }, { - "name": "Hippo1", - "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", + "name": "S-Glow", + "md5": "19a93db8a294ccaec4d6eef4020a446f.svg", "type": "sprite", "tags": [ - "animals", - "flying", - "fantasy", + "letters", + "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Hippo1", + "objName": "S-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hippo1-a", - "baseLayerID": -1, - "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 65 + "format": "adpcm" }, { - "costumeName": "hippo1-b", - "baseLayerID": -1, - "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Holly", - "md5": "1d8583ca1b5c687f3de004c27110a130.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Holly", - "sounds": [ + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "holly1", - "baseLayerID": -1, - "baseLayerMD5": "1d8583ca1b5c687f3de004c27110a130.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 44 - }, - { - "costumeName": "holly2", + "costumeName": "S-glow", "baseLayerID": -1, - "baseLayerMD5": "4b23f1d694ae8b400f1d7216dd8e49bc.svg", + "baseLayerMD5": "19a93db8a294ccaec4d6eef4020a446f.svg", "bitmapResolution": 1, "rotationCenterX": 27, - "rotationCenterY": 42 + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, @@ -27274,11 +22129,11 @@ } }, { - "name": "Home Button", - "md5": "1bac530a0701a8fc88bb0802ae6787a3.svg", + "name": "T-Glow", + "md5": "d7bcda522a1e9504dafcf2fa0fcde39b.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -27288,81 +22143,129 @@ 1 ], "json": { - "objName": "Home Button", + "objName": "T-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "home button", - "baseLayerID": -1, - "baseLayerMD5": "1bac530a0701a8fc88bb0802ae6787a3.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Horse1", - "md5": "32f4d80477cd070cb0848e555d374060.svg", - "type": "sprite", - "tags": [ - "animals", - "transportation", - "vector", - "drawing" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Horse1", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "horse1-a", - "baseLayerID": -1, - "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg", - "bitmapResolution": 1, - "rotationCenterX": 119, - "rotationCenterY": 83 - }, - { - "costumeName": "horse1-b", + "costumeName": "T-glow", "baseLayerID": -1, - "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", + "baseLayerMD5": "d7bcda522a1e9504dafcf2fa0fcde39b.svg", "bitmapResolution": 1, - "rotationCenterX": 103, - "rotationCenterY": 97 + "rotationCenterX": 35, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -27378,48 +22281,143 @@ } }, { - "name": "Jaime", - "md5": "3ddc912edef87ae29121f57294fa0cb5.png", + "name": "U-Glow", + "md5": "790482a3c3691a1e96ef34eee7303872.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Jaime", + "objName": "U-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "jaime-a", - "baseLayerID": -1, - "baseLayerMD5": "3ddc912edef87ae29121f57294fa0cb5.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 154 - }, - { - "costumeName": "jaime-b", + "costumeName": "U-glow", "baseLayerID": -1, - "baseLayerMD5": "5a683f4536abca0f83a77bc341df4c9a.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 154 + "baseLayerMD5": "790482a3c3691a1e96ef34eee7303872.svg", + "bitmapResolution": 1, + "rotationCenterX": 37, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -27435,73 +22433,143 @@ } }, { - "name": "Jaime Walking", - "md5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", + "name": "V-Glow", + "md5": "6a00388d8dc6be645b843cef9c22681c.svg", "type": "sprite", "tags": [ - "people", - "city", - "walking", + "letters", "drawing", "vector" ], "info": [ 0, - 5, + 1, 1 ], "json": { - "objName": "Jaime Walking", + "objName": "V-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "jaime walking-a", - "baseLayerID": -1, - "baseLayerMD5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", - "bitmapResolution": 2, - "rotationCenterX": 106, - "rotationCenterY": 172 }, { - "costumeName": "jaime walking-b", - "baseLayerID": -1, - "baseLayerMD5": "7fb579a98d6db257f1b16109d3c4609a.png", - "bitmapResolution": 2, - "rotationCenterX": 52, - "rotationCenterY": 176 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "jaime walking-c", - "baseLayerID": -1, - "baseLayerMD5": "5883bdefba451aaeac8d77c798d41eb0.png", - "bitmapResolution": 2, - "rotationCenterX": 88, - "rotationCenterY": 170 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "jaime walking-d", - "baseLayerID": -1, - "baseLayerMD5": "4b9d2162e30dbb924840575ed35fddb0.png", - "bitmapResolution": 2, - "rotationCenterX": 46, - "rotationCenterY": 174 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "jaime walking-e", + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "V-glow", "baseLayerID": -1, - "baseLayerMD5": "63e56d28cc3e3d9b735e1f1d51248cc0.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 172 + "baseLayerMD5": "6a00388d8dc6be645b843cef9c22681c.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -27517,14 +22585,13 @@ } }, { - "name": "Jay", - "md5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", + "name": "W-Glow", + "md5": "1a9ea7305a85b271c1de79beafe16cb4.svg", "type": "sprite", "tags": [ - "people", - "city", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -27532,24 +22599,129 @@ 1 ], "json": { - "objName": "Jay", + "objName": "W-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "jay", + "costumeName": "W-glow", "baseLayerID": -1, - "baseLayerMD5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", - "rotationCenterX": 70, - "rotationCenterY": 100 + "baseLayerMD5": "1a9ea7305a85b271c1de79beafe16cb4.svg", + "bitmapResolution": 1, + "rotationCenterX": 45, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -27565,48 +22737,143 @@ } }, { - "name": "Jeans", - "md5": "4e283da8c59bcbb9803bdc0016b14c21.svg", + "name": "X-Glow", + "md5": "ec4e65b9ae475a676973128f4205df5f.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Jeans", + "objName": "X-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "jeans-a", - "baseLayerID": -1, - "baseLayerMD5": "4e283da8c59bcbb9803bdc0016b14c21.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 25 - }, - { - "costumeName": "jeans-b", + "costumeName": "X-glow", "baseLayerID": -1, - "baseLayerMD5": "01732aa03a48482093fbed3ea402c4a9.svg", + "baseLayerMD5": "ec4e65b9ae475a676973128f4205df5f.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 25 + "rotationCenterX": 40, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -27615,21 +22882,20 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Jodi", - "md5": "a8ae8b69caa6a837f49aa950055ef29a.gif", + "name": "Y-Glow", + "md5": "683cd093bb3b254733a15df6f843464c.svg", "type": "sprite", "tags": [ - "people", - "sports", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -27637,24 +22903,129 @@ 1 ], "json": { - "objName": "Jodi", + "objName": "Y-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "jodi", + "costumeName": "Y-glow", "baseLayerID": -1, - "baseLayerMD5": "a8ae8b69caa6a837f49aa950055ef29a.gif", - "rotationCenterX": 54, - "rotationCenterY": 75 + "baseLayerMD5": "683cd093bb3b254733a15df6f843464c.svg", + "bitmapResolution": 1, + "rotationCenterX": 38, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -27670,137 +23041,143 @@ } }, { - "name": "Jouvi Hip-Hop", - "md5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", + "name": "Z-Glow", + "md5": "db89a4c9b123123542e0b7556ed3ff9f.svg", "type": "sprite", "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, - 13, + 1, 1 ], "json": { - "objName": "Jouvi Hip-Hop", + "objName": "Z-Glow", "sounds": [ { - "soundName": "dance celebrate2", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, "format": "adpcm" - } - ], - "costumes": [ + }, { - "costumeName": "jo stance", - "baseLayerID": -1, - "baseLayerMD5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", - "bitmapResolution": 2, - "rotationCenterX": 94, - "rotationCenterY": 240 + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" }, { - "costumeName": "jo top stand", - "baseLayerID": -1, - "baseLayerMD5": "a91fe6e180b524d27688aa0cd82cd629.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 260 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "jo top R leg", - "baseLayerID": -1, - "baseLayerMD5": "de64c526a57355af5fd6ff28f27b67ea.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 262 + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" }, { - "costumeName": "jo top L leg", - "baseLayerID": -1, - "baseLayerMD5": "987a667cd7984d9e5429c26b8a4cab2d.png", - "bitmapResolution": 2, - "rotationCenterX": 208, - "rotationCenterY": 268 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "jo top R cross", - "baseLayerID": -1, - "baseLayerMD5": "ddbd8751df020cc32231ecb4e7b5388d.png", - "bitmapResolution": 2, - "rotationCenterX": 144, - "rotationCenterY": 270 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "jo top L cross", - "baseLayerID": -1, - "baseLayerMD5": "33660046a3d37fa762f4a634ee3df75d.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 268 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop front", - "baseLayerID": -1, - "baseLayerMD5": "0503f4d712bc3184cf1b5f830d0df993.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 228 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop down", - "baseLayerID": -1, - "baseLayerMD5": "95a0f1bb3d8055a283aecc6bcb6303c9.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 74 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop left", - "baseLayerID": -1, - "baseLayerMD5": "98e8c2f9869f9356204ed19e43ae01cc.png", - "bitmapResolution": 2, - "rotationCenterX": 196, - "rotationCenterY": 226 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop right", - "baseLayerID": -1, - "baseLayerMD5": "7bf1600ee75facb510c2922f899fb97c.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 242 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "jo pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "2a907e6edf8a101addb2c27d0568896a.png", - "bitmapResolution": 2, - "rotationCenterX": 108, - "rotationCenterY": 258 + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop stand", - "baseLayerID": -1, - "baseLayerMD5": "361d1884737ef734f6a39fd66fc269ec.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 262 + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" }, { - "costumeName": "jo pop R arm", + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "Z-glow", "baseLayerID": -1, - "baseLayerMD5": "e633eb002deb20108bb5100d4b3a8fc5.png", - "bitmapResolution": 2, - "rotationCenterX": 108, - "rotationCenterY": 260 + "baseLayerMD5": "db89a4c9b123123542e0b7556ed3ff9f.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -27816,48 +23193,143 @@ } }, { - "name": "Kai", - "md5": "6e007fde15e49c66ee7996561f80b452.png", + "name": "0-Glow", + "md5": "38b2b342659adc6fa289090975e0e71d.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", - "bitmap" + "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Kai", + "objName": "0-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "kai-a", - "baseLayerID": -1, - "baseLayerMD5": "6e007fde15e49c66ee7996561f80b452.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 160 - }, - { - "costumeName": "kai-b", + "costumeName": "0-glow", "baseLayerID": -1, - "baseLayerMD5": "c1e1149f6d7e308e3e4eba14ccc8a751.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 158 + "baseLayerMD5": "38b2b342659adc6fa289090975e0e71d.svg", + "bitmapResolution": 1, + "rotationCenterX": 29, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -27873,11 +23345,11 @@ } }, { - "name": "Key", - "md5": "af35300cef35803e11f4ed744dc5e818.svg", + "name": "1-Glow", + "md5": "2c88706210672655401fe09edd8ff6a7.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -27887,98 +23359,129 @@ 1 ], "json": { - "objName": "Key", + "objName": "1-Glow", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "key", - "baseLayerID": -1, - "baseLayerMD5": "af35300cef35803e11f4ed744dc5e818.svg", - "rotationCenterX": 42, - "rotationCenterY": 27 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Khalid Dance", - "md5": "d0018780c7458f002b6fec6d1fea3570.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Khalid Dance", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "khalid-a", - "baseLayerID": -1, - "baseLayerMD5": "d0018780c7458f002b6fec6d1fea3570.png", - "bitmapResolution": 2, - "rotationCenterX": 79, - "rotationCenterY": 101 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "Khalid-b", - "baseLayerID": -1, - "baseLayerMD5": "88023269142bfc3ecab5b13cc8cbddb9.png", - "bitmapResolution": 2, - "rotationCenterX": 69, - "rotationCenterY": 103 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "khalid-c", - "baseLayerID": -1, - "baseLayerMD5": "30dbce950a2d2dddc0ea53d1462d116b.png", - "bitmapResolution": 2, - "rotationCenterX": 69, - "rotationCenterY": 109 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "khalid-d", + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "1-glow", "baseLayerID": -1, - "baseLayerMD5": "e189aec22f4cb57a90f75457615fbbd8.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 63 + "baseLayerMD5": "2c88706210672655401fe09edd8ff6a7.svg", + "bitmapResolution": 1, + "rotationCenterX": 24, + "rotationCenterY": 39 } ], "currentCostumeIndex": 0, @@ -27994,13 +23497,12 @@ } }, { - "name": "Knight", - "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", + "name": "2-Glow", + "md5": "b9faa5708a799a1607f0325a7af2561c.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", - "castle", "vector" ], "info": [ @@ -28009,24 +23511,129 @@ 1 ], "json": { - "objName": "Knight", + "objName": "2-Glow", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "knight", - "baseLayerID": -1, - "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "2-glow", + "baseLayerID": -1, + "baseLayerMD5": "b9faa5708a799a1607f0325a7af2561c.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 41 } ], "currentCostumeIndex": 0, @@ -28042,11 +23649,11 @@ } }, { - "name": "Ladybug1", - "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "name": "3-Glow", + "md5": "cf42a50552ce26032ead712ac4f36c23.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -28056,24 +23663,129 @@ 1 ], "json": { - "objName": "Ladybug1", + "objName": "3-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "ladybug2", + "costumeName": "3-glow", "baseLayerID": -1, - "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", - "rotationCenterX": 41, - "rotationCenterY": 43 + "baseLayerMD5": "cf42a50552ce26032ead712ac4f36c23.svg", + "bitmapResolution": 1, + "rotationCenterX": 33, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -28089,45 +23801,143 @@ } }, { - "name": "Ladybug2", - "md5": "c018a3eed966d5f92c69f2188dfd2aae.svg", + "name": "4-Glow", + "md5": "3ffa6aee373e28fc36b9395ac4d0467e.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Ladybug2", + "objName": "4-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "ladybug2-a", - "baseLayerID": -1, - "baseLayerMD5": "c018a3eed966d5f92c69f2188dfd2aae.svg", - "rotationCenterX": 49, - "rotationCenterY": 28 - }, - { - "costumeName": "ladybug2-b", + "costumeName": "4-glow", "baseLayerID": -1, - "baseLayerMD5": "a2bb15ace808e070a2b815502952b292.svg", - "rotationCenterX": 49, - "rotationCenterY": 28 + "baseLayerMD5": "3ffa6aee373e28fc36b9395ac4d0467e.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -28143,13 +23953,13 @@ } }, { - "name": "Lamp", - "md5": "4885678710301cda511018ad7e420c9c.png", + "name": "5-Glow", + "md5": "85d87d32e7e9e6be122c905b0d2e7e33.svg", "type": "sprite", "tags": [ - "things", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -28157,24 +23967,129 @@ 1 ], "json": { - "objName": "Lamp", + "objName": "5-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "lamp", + "costumeName": "5-glow", "baseLayerID": -1, - "baseLayerMD5": "4885678710301cda511018ad7e420c9c.png", - "rotationCenterX": 25, - "rotationCenterY": 41 + "baseLayerMD5": "85d87d32e7e9e6be122c905b0d2e7e33.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 38 } ], "currentCostumeIndex": 0, @@ -28190,11 +24105,11 @@ } }, { - "name": "Laptop", - "md5": "76f456b30b98eeefd7c942b27b524e31.svg", + "name": "6-Glow", + "md5": "62cc2a6def27f19d11ed56e86e95aac5.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -28204,171 +24119,129 @@ 1 ], "json": { - "objName": "Laptop", + "objName": "6-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" - } - ], - "costumes": [ + "format": "adpcm" + }, { - "costumeName": "laptop", - "baseLayerID": -1, - "baseLayerMD5": "76f456b30b98eeefd7c942b27b524e31.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "LB Hip-Hop", - "md5": "61b464a77536f75490d8891fb877819a.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 13, - 1 - ], - "json": { - "objName": "LB Hip-Hop", - "sounds": [ - { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "lb stance", - "baseLayerID": -1, - "baseLayerMD5": "61b464a77536f75490d8891fb877819a.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 244 + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" }, { - "costumeName": "lb top stand", - "baseLayerID": -1, - "baseLayerMD5": "dfe3628ddf46a67dcc21c63be65a8e40.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 248 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "lb top R leg", - "baseLayerID": -1, - "baseLayerMD5": "e824768a109691b5a3c577d3506ed70c.png", - "bitmapResolution": 2, - "rotationCenterX": 244, - "rotationCenterY": 250 + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" }, { - "costumeName": "lb top L leg", - "baseLayerID": -1, - "baseLayerMD5": "350472368e2310efe6fa734b79f0ff41.png", - "bitmapResolution": 2, - "rotationCenterX": 234, - "rotationCenterY": 286 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "lb top L cross", - "baseLayerID": -1, - "baseLayerMD5": "5a151c4d4e2e2f870d9096d5fce6ed48.png", - "bitmapResolution": 2, - "rotationCenterX": 148, - "rotationCenterY": 258 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "lb top R cross", - "baseLayerID": -1, - "baseLayerMD5": "99acf468000c6fcbaf344e4531725efc.png", - "bitmapResolution": 2, - "rotationCenterX": 174, - "rotationCenterY": 256 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop front", - "baseLayerID": -1, - "baseLayerMD5": "e34a166807a3ffbf8d147b12aa49dd19.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 272 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop down", - "baseLayerID": -1, - "baseLayerMD5": "8e41de92cb932a6898782a39a0d7d300.png", - "bitmapResolution": 2, - "rotationCenterX": 56, - "rotationCenterY": 90 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop left", - "baseLayerID": -1, - "baseLayerMD5": "ff1b96d1047d4be459a4614ce7c7c94c.png", - "bitmapResolution": 2, - "rotationCenterX": 198, - "rotationCenterY": 266 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop right", - "baseLayerID": -1, - "baseLayerMD5": "d6d5534c628ac5d5fe3cbf1b76b71252.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 264 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "lb pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "c1fd31607619b8c98a286a650f248511.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 262 + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop stand", - "baseLayerID": -1, - "baseLayerMD5": "51fe5962fe4d2af7f6fad7abaa692069.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 268 + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" }, { - "costumeName": "lb pop R arm", + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "6-glow", "baseLayerID": -1, - "baseLayerMD5": "aa57575fde5ff8b13041e3a7b1499fe0.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 258 + "baseLayerMD5": "62cc2a6def27f19d11ed56e86e95aac5.svg", + "bitmapResolution": 1, + "rotationCenterX": 30, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, @@ -28384,13 +24257,11 @@ } }, { - "name": "Lightning", - "md5": "c2d636ab2b491e591536afc3d49cbecd.svg", + "name": "7-Glow", + "md5": "8887983eb4df2e62a2ed4770a1d98d60.svg", "type": "sprite", "tags": [ - "things", - "castle", - "nature", + "letters", "drawing", "vector" ], @@ -28400,24 +24271,129 @@ 1 ], "json": { - "objName": "Lightning", + "objName": "7-Glow", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "lightning", + "costumeName": "7-glow", "baseLayerID": -1, - "baseLayerMD5": "c2d636ab2b491e591536afc3d49cbecd.svg", - "rotationCenterX": 21, - "rotationCenterY": 83 + "baseLayerMD5": "8887983eb4df2e62a2ed4770a1d98d60.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, @@ -28433,50 +24409,146 @@ } }, { - "name": "Lion", - "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "name": "8-Glow", + "md5": "4c42c4cb0c1e090d0f9570416d3c80c8.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Lion", + "objName": "8-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "lion-a", - "baseLayerID": -1, - "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "lion-b", + "costumeName": "8-glow", "baseLayerID": -1, - "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg", + "baseLayerMD5": "4c42c4cb0c1e090d0f9570416d3c80c8.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 31, + "rotationCenterY": 37 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -28489,11 +24561,11 @@ } }, { - "name": "Lionness", - "md5": "8b5f49d4f91f61fbdcb4abac53ab5c7c.svg", + "name": "9-Glow", + "md5": "7bcb7e2e48f5cb770c83d4267922fec0.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -28503,195 +24575,129 @@ 1 ], "json": { - "objName": "Lionness", + "objName": "9-Glow", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "lioness", - "baseLayerID": -1, - "baseLayerMD5": "8b5f49d4f91f61fbdcb4abac53ab5c7c.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lornz OdetoCode", - "md5": "bf911c597995031014bbf32a8eb9d997.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ], - "info": [ - 1, - 8, - 1 - ], - "json": { - "objName": "Lornz OdetoCode", - "scripts": [ - [ - 10, - 10, - [ - [ - "whenKeyPressed", - "space" - ], - [ - "nextCostume" - ] - ] - ] - ], - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { - "soundName": "odesong-b", - "soundID": -1, - "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", - "sampleCount": 212553, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, { - "costumeName": "lorenz01", - "baseLayerID": -1, - "baseLayerMD5": "bf911c597995031014bbf32a8eb9d997.png", - "bitmapResolution": 2, - "rotationCenterX": 71, - "rotationCenterY": 252 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "lorenz02", - "baseLayerID": -1, - "baseLayerMD5": "a1fb3946afc4c064503656d5d8ed0def.png", - "bitmapResolution": 2, - "rotationCenterX": 120, - "rotationCenterY": 252 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "lorenz03", - "baseLayerID": -1, - "baseLayerMD5": "1da2ed229f84c1e6d1693bce3bf2d27f.png", - "bitmapResolution": 2, - "rotationCenterX": 125, - "rotationCenterY": 252 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "lorenz04", - "baseLayerID": -1, - "baseLayerMD5": "6b798489bdf2c48337ccb2d31fc64c5f.png", - "bitmapResolution": 2, - "rotationCenterX": 124, - "rotationCenterY": 109 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" }, { - "costumeName": "lorenz05", - "baseLayerID": -1, - "baseLayerMD5": "dc4e7a7e84f20802d4c1b12423738f62.png", - "bitmapResolution": 2, - "rotationCenterX": 141, - "rotationCenterY": 252 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "lorenz06", - "baseLayerID": -1, - "baseLayerMD5": "92db5fdd19b29f32890926d808e764af.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 250 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "lorenz07", - "baseLayerID": -1, - "baseLayerMD5": "6b65c2e80daf820d0f277af4f7352cbc.png", - "bitmapResolution": 2, - "rotationCenterX": 121, - "rotationCenterY": 252 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "lorenz07b", - "baseLayerID": -1, - "baseLayerMD5": "97ef7f1f07248305725f74a0cc127eba.png", - "bitmapResolution": 2, - "rotationCenterX": 115, - "rotationCenterY": 252 - } - ], - "currentCostumeIndex": 7, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Magic Carpet", - "md5": "66b74069378c828cb21d2dbe2227a31a.png", - "type": "sprite", - "tags": [ - "transportation", - " fantasy", - "flying", - "castle", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Magic Carpet", - "sounds": [ + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "magiccarpet", + "costumeName": "9-glow", "baseLayerID": -1, - "baseLayerMD5": "66b74069378c828cb21d2dbe2227a31a.png", - "rotationCenterX": 90, - "rotationCenterY": 31 + "baseLayerMD5": "7bcb7e2e48f5cb770c83d4267922fec0.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, @@ -28707,12 +24713,11 @@ } }, { - "name": "Magic Wand", - "md5": "3db9bfe57d561557795633c5cda44e8c.svg", + "name": "A-Pixel", + "md5": "a54da6be420c9e8e7cb02e2a568f3442.svg", "type": "sprite", "tags": [ - "things", - "castle", + "letters", "drawing", "vector" ], @@ -28722,241 +24727,129 @@ 1 ], "json": { - "objName": "Magic Wand", + "objName": "A-Pixel", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "magicwand", - "baseLayerID": -1, - "baseLayerMD5": "3db9bfe57d561557795633c5cda44e8c.svg", - "rotationCenterX": 41, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Maya", - "md5": "8b7ff2f1190825367112c2c076e34af3.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Maya", - "sounds": [ + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "maya", - "baseLayerID": -1, - "baseLayerMD5": "8b7ff2f1190825367112c2c076e34af3.png", - "bitmapResolution": 2, - "rotationCenterX": 72, - "rotationCenterY": 138 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Marble Building", - "md5": "53608adfaea6e927dc11b53f604e2a1e.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Marble Building", - "sounds": [ + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "marble-building", - "baseLayerID": -1, - "baseLayerMD5": "53608adfaea6e927dc11b53f604e2a1e.png", - "rotationCenterX": 50, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Microphone", - "md5": "59109aefada55997b9497c6266695830.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 10 - ], - "json": { - "objName": "Microphone", - "sounds": [ + }, { - "soundName": "bass beatbox", - "soundID": -1, - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, - "rate": 22050, + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, "format": "" }, { - "soundName": "hi beatbox", - "soundID": -1, - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, - "rate": 22050, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, "format": "" }, { - "soundName": "snare beatbox", - "soundID": -1, - "md5": "c642c4c00135d890998f351faec55498.wav", - "sampleCount": 5630, + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "scratching beatbox", - "soundID": -1, - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "crash beatbox", - "soundID": -1, - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "wub beatbox", - "soundID": -1, + "soundName": "wub", + "soundID": 9, "md5": "e1f32c057411da4237181ce72ae15d23.wav", "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "hihat beatbox", - "soundID": -1, - "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", - "sampleCount": 4274, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "rim beatbox", - "soundID": -1, - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "clap beatbox", - "soundID": -1, - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" }, { - "soundName": "wah beatbox", - "soundID": -1, - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" } ], "costumes": [ { - "costumeName": "microphone", + "costumeName": "A-pixel", "baseLayerID": -1, - "baseLayerMD5": "59109aefada55997b9497c6266695830.svg", + "baseLayerMD5": "a54da6be420c9e8e7cb02e2a568f3442.svg", "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 31 + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -28972,112 +24865,143 @@ } }, { - "name": "Microphone Stand", - "md5": "fe85f2d5a94d27b6d793361c3fddcf77.svg", + "name": "B-Pixel", + "md5": "e47682020873e276f550421f0d854523.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, 1, - 10 + 1 ], "json": { - "objName": "Microphone Stand", + "objName": "B-Pixel", "sounds": [ { - "soundName": "bass beatbox", - "soundID": -1, - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "hi beatbox", - "soundID": -1, - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "snare beatbox", - "soundID": -1, - "md5": "726fea2968a387ef566c03d163f17668.wav", - "sampleCount": 6102, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "scratching beatbox", - "soundID": -1, - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "crash beatbox", - "soundID": -1, - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "wub beatbox", - "soundID": -1, + "soundName": "wub", + "soundID": 9, "md5": "e1f32c057411da4237181ce72ae15d23.wav", "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "hihat beatbox", - "soundID": -1, - "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", - "sampleCount": 4274, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "rim beatbox", - "soundID": -1, - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "clap beatbox", - "soundID": -1, - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" }, { - "soundName": "wah beatbox", - "soundID": -1, - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" } ], "costumes": [ { - "costumeName": "microphonestand", + "costumeName": "B-pixel", "baseLayerID": -1, - "baseLayerMD5": "fe85f2d5a94d27b6d793361c3fddcf77.svg", + "baseLayerMD5": "e47682020873e276f550421f0d854523.svg", "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 55 + "rotationCenterX": 14, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -29093,47 +25017,143 @@ } }, { - "name": "Monkey1", - "md5": "d0819570ed955416190eab2e020071ca.svg", + "name": "C-Pixel", + "md5": "ee1958ffbae4e0fd836622ae183b55bd.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Monkey1", + "objName": "C-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "monkey1-a", - "baseLayerID": -1, - "baseLayerMD5": "d0819570ed955416190eab2e020071ca.svg", - "bitmapResolution": 1, - "rotationCenterX": 44, - "rotationCenterY": 45 - }, - { - "costumeName": "monkey1-b", + "costumeName": "C-pixel", "baseLayerID": -1, - "baseLayerMD5": "dc361fc5c8645e68c7bab9db3df6bc9d.svg", + "baseLayerMD5": "ee1958ffbae4e0fd836622ae183b55bd.svg", "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 46 + "rotationCenterX": 14, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -29149,61 +25169,149 @@ } }, { - "name": "Monkey2", - "md5": "6e4de762dbd52cd2b6356694a9668211.svg", + "name": "D-Pixel", + "md5": "d759df99f347d9b7d59e1f703e8e1438.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Monkey2", + "objName": "D-Pixel", "sounds": [ { - "soundName": "chee chee", - "soundID": -1, - "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", - "sampleCount": 34560, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "monkey2-a", - "baseLayerID": -1, - "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "monkey2-b", - "baseLayerID": -1, - "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" }, { - "costumeName": "monkey2-c", + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "D-pixel", "baseLayerID": -1, - "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg", + "baseLayerMD5": "d759df99f347d9b7d59e1f703e8e1438.svg", "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 + "rotationCenterX": 14, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.75, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -29213,14 +25321,13 @@ } }, { - "name": "Mori", - "md5": "350a86adb24247003cc7e047bdba3c1d.png", + "name": "E-Pixel", + "md5": "059a64a90014dc69c510b562cdf94df7.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", - "bitmap" + "vector" ], "info": [ 0, @@ -29228,25 +25335,129 @@ 1 ], "json": { - "objName": "Mori", + "objName": "E-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "mori", + "costumeName": "E-pixel", "baseLayerID": -1, - "baseLayerMD5": "350a86adb24247003cc7e047bdba3c1d.png", - "bitmapResolution": 2, - "rotationCenterX": 42, - "rotationCenterY": 160 + "baseLayerMD5": "059a64a90014dc69c510b562cdf94df7.svg", + "bitmapResolution": 1, + "rotationCenterX": 11, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -29262,47 +25473,143 @@ } }, { - "name": "Mouse1", - "md5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", + "name": "F-Pixel", + "md5": "ebbc6dc0f7d1a89b159aac3f76fe52f4.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Mouse1", + "objName": "F-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "mouse1-a", - "baseLayerID": -1, - "baseLayerMD5": "e1f0c26afecbe9d4b9923d8e6bf489a8.svg", - "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 27 - }, - { - "costumeName": "mouse1-b", + "costumeName": "F-pixel", "baseLayerID": -1, - "baseLayerMD5": "f5e477a3f94fc98ba3cd927228405646.svg", + "baseLayerMD5": "ebbc6dc0f7d1a89b159aac3f76fe52f4.svg", "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 21 + "rotationCenterX": 10, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -29318,47 +25625,143 @@ } }, { - "name": "Muffin", - "md5": "e00161f08c77d10e72e44b6e01243e63.svg", + "name": "G-Pixel", + "md5": "203dfa253635f0e52059e835c51fa6f8.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Muffin", + "objName": "G-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "muffin-a", - "baseLayerID": -1, - "baseLayerMD5": "e00161f08c77d10e72e44b6e01243e63.svg", - "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 48 - }, - { - "costumeName": "muffin-b", + "costumeName": "G-pixel", "baseLayerID": -1, - "baseLayerMD5": "fb60c3f8d6a892813299daa33b91df23.svg", + "baseLayerMD5": "203dfa253635f0e52059e835c51fa6f8.svg", "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 48 + "rotationCenterX": 15, + "rotationCenterY": 22 } ], "currentCostumeIndex": 0, @@ -29374,168 +25777,146 @@ } }, { - "name": "Nano", - "md5": "02c5433118f508038484bbc5b111e187.svg", + "name": "H-Pixel", + "md5": "d9a94d9b9abc9e26eb91d22d197a1556.svg", "type": "sprite", "tags": [ - "fantasy", - "space", + "letters", "drawing", "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Nano", + "objName": "H-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "nano-a", - "baseLayerID": -1, - "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "nano-b", - "baseLayerID": -1, - "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "nano-c", - "baseLayerID": -1, - "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "nano-d", - "baseLayerID": -1, - "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Neigh Pony", - "md5": "176c4fb4df80df899ca28a48bd1f0edf.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Neigh Pony", - "sounds": [ + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, { - "soundName": "horse", - "soundID": -1, - "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", - "sampleCount": 14464, - "rate": 11025, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "neigh pony", - "baseLayerID": -1, - "baseLayerMD5": "176c4fb4df80df899ca28a48bd1f0edf.svg", - "bitmapResolution": 1, - "rotationCenterX": 74, - "rotationCenterY": 78 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Octopus", - "md5": "bb68d2e29d8572ef9de06f8033e668d9.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector", - "underwater" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Octopus", - "sounds": [ + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "octopus-a", - "baseLayerID": -1, - "baseLayerMD5": "bb68d2e29d8572ef9de06f8033e668d9.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "octopus-b", + "costumeName": "H-pixel", "baseLayerID": -1, - "baseLayerMD5": "b52bd3bc12553bb31b1395516c3cec4d.svg", + "baseLayerMD5": "d9a94d9b9abc9e26eb91d22d197a1556.svg", "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 + "rotationCenterX": 15, + "rotationCenterY": 20 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, @@ -29548,11 +25929,11 @@ } }, { - "name": "Orange", - "md5": "780ee2ef342f79a81b4c353725331138.svg", + "name": "I-Pixel", + "md5": "aeb851adc39da9582a379af1ed6d0efe.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], @@ -29562,89 +25943,129 @@ 1 ], "json": { - "objName": "Orange", + "objName": "I-Pixel", "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": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Orange2", - "md5": "89b11d2a404c3972b65743f743cc968a.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Orange2", - "sounds": [ + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "orange2-a", - "baseLayerID": -1, - "baseLayerMD5": "89b11d2a404c3972b65743f743cc968a.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 24 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "orange2-b", - "baseLayerID": -1, - "baseLayerMD5": "5f7998e007dfa70e70bbd8d43199ebba.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 27 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "orange2-c", + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "I-pixel", "baseLayerID": -1, - "baseLayerMD5": "466e9e2d62ee135a2dabd5593e6f8407.svg", + "baseLayerMD5": "aeb851adc39da9582a379af1ed6d0efe.svg", "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 33 + "rotationCenterX": 9, + "rotationCenterY": 21 } ], "currentCostumeIndex": 0, @@ -29660,77 +26081,143 @@ } }, { - "name": "Paddle", - "md5": "5cda5ed5ffabc3d06322551656427b06.svg", + "name": "J-Pixel", + "md5": "c18906f764b2889a8fc0b3c16db28bf0.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Paddle", - "costumes": [ - { - "costumeName": "paddle", - "baseLayerID": -1, - "baseLayerMD5": "5cda5ed5ffabc3d06322551656427b06.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 8 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.85000000000001, - "direction": -90, - "rotationStyle": "none", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Palmtree", - "md5": "6d9c18c296edc8a01e4c611b573b5723.gif", - "type": "sprite", - "tags": [ - "things", - "nature", - "photo", - "bitmap" - ], "info": [ 0, 1, 1 ], "json": { - "objName": "Palmtree", + "objName": "J-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "palmtree", + "costumeName": "J-pixel", "baseLayerID": -1, - "baseLayerMD5": "6d9c18c296edc8a01e4c611b573b5723.gif", - "rotationCenterX": 58, - "rotationCenterY": 100 + "baseLayerMD5": "c18906f764b2889a8fc0b3c16db28bf0.svg", + "bitmapResolution": 1, + "rotationCenterX": 14, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -29746,49 +26233,143 @@ } }, { - "name": "Parrot", - "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", + "name": "K-Pixel", + "md5": "4483633d2ae26987d0efe359aaf1357b.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "flying", - "nature", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Parrot", + "objName": "K-Pixel", "sounds": [ { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "parrot-a", - "baseLayerID": -1, - "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", - "bitmapResolution": 1, - "rotationCenterX": 86, - "rotationCenterY": 106 - }, - { - "costumeName": "parrot-b", + "costumeName": "K-pixel", "baseLayerID": -1, - "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg", + "baseLayerMD5": "4483633d2ae26987d0efe359aaf1357b.svg", "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 31 + "rotationCenterX": 14, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -29804,57 +26385,143 @@ } }, { - "name": "Parrot2", - "md5": "aba6f5539a5ac21863a3495d89947e66.svg", + "name": "L-Pixel", + "md5": "0625b64705d62748c6105e969859fe0d.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "flying", - "nature", "vector" ], "info": [ 0, - 2, - 2 + 1, + 1 ], "json": { - "objName": "Parrot2", + "objName": "L-Pixel", "sounds": [ { - "soundName": "squawk", - "soundID": -1, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "parrot2-a", - "baseLayerID": -1, - "baseLayerMD5": "aba6f5539a5ac21863a3495d89947e66.svg", - "bitmapResolution": 1, - "rotationCenterX": 106, - "rotationCenterY": 66 + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "costumeName": "parrot2-b", - "baseLayerID": -1, - "baseLayerMD5": "9f0aac24e6b600b542613ab5c1461ae8.svg", + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "L-pixel", + "baseLayerID": -1, + "baseLayerMD5": "0625b64705d62748c6105e969859fe0d.svg", "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 13 + "rotationCenterX": 11, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -29870,14 +26537,13 @@ } }, { - "name": "Paul", - "md5": "4092b43b067ef01ce76a395637fe020a.gif", + "name": "M-Pixel", + "md5": "46ccf731f158b9dda75f4e71a5bcd282.svg", "type": "sprite", "tags": [ - "people", - "city", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -29885,24 +26551,129 @@ 1 ], "json": { - "objName": "Paul", + "objName": "M-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "paul", + "costumeName": "M-pixel", "baseLayerID": -1, - "baseLayerMD5": "4092b43b067ef01ce76a395637fe020a.gif", - "rotationCenterX": 41, - "rotationCenterY": 100 + "baseLayerMD5": "46ccf731f158b9dda75f4e71a5bcd282.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 16 } ], "currentCostumeIndex": 0, @@ -29918,47 +26689,143 @@ } }, { - "name": "Pencil", - "md5": "4495fcb0443cebc5d43e66243a88f1ac.svg", + "name": "N-Pixel", + "md5": "f9d3b49b5962ff4070fae186b8b71e39.svg", "type": "sprite", "tags": [ - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Pencil", + "objName": "N-Pixel", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "pencil-a", - "baseLayerID": -1, - "baseLayerMD5": "4495fcb0443cebc5d43e66243a88f1ac.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 54 - }, - { - "costumeName": "pencil-b", + "costumeName": "N-pixel", "baseLayerID": -1, - "baseLayerMD5": "21088922dbe127f6d2e58e2e83fb632e.svg", + "baseLayerMD5": "f9d3b49b5962ff4070fae186b8b71e39.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 68 + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -29974,11 +26841,11 @@ } }, { - "name": "Penguin1", - "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", + "name": "O-Pixel", + "md5": "668b21968078f3b7b1a9ccd74407fa1e.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], @@ -29988,24 +26855,129 @@ 1 ], "json": { - "objName": "Penguin1", + "objName": "O-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "penguin1", + "costumeName": "O-pixel", "baseLayerID": -1, - "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg", - "rotationCenterX": 54, - "rotationCenterY": 61 + "baseLayerMD5": "668b21968078f3b7b1a9ccd74407fa1e.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30021,92 +26993,143 @@ } }, { - "name": "Penguin1 Talk", - "md5": "35fec7aa5f60cca945fe0615413f1f08.svg", + "name": "P-Pixel", + "md5": "02011265d2597175c7496da667265f4a.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Penguin1 Talk", + "objName": "P-Pixel", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin1 talk-a", - "baseLayerID": -1, - "baseLayerMD5": "35fec7aa5f60cca945fe0615413f1f08.svg", - "rotationCenterX": 48, - "rotationCenterY": 62 }, { - "costumeName": "penguin1 talk-b", - "baseLayerID": -1, - "baseLayerMD5": "18fa51a64ebd5518f0c5c465525346e5.svg", - "rotationCenterX": 48, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin2", - "md5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Penguin2", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "penguin2", + "costumeName": "P-pixel", "baseLayerID": -1, - "baseLayerMD5": "eaaaa7068e78a51d73ba437f1ec5763e.svg", - "rotationCenterX": 49, - "rotationCenterY": 79 + "baseLayerMD5": "02011265d2597175c7496da667265f4a.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30122,45 +27145,143 @@ } }, { - "name": "Penguin2 Talk", - "md5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", + "name": "Q-Pixel", + "md5": "8c77c87dd0ed2613873cff0795ffc701.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Penguin2 Talk", + "objName": "Q-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "penguin2 talk-a", - "baseLayerID": -1, - "baseLayerMD5": "5a80f4b2fd20d43e4f7cb4189c08d99c.svg", - "rotationCenterX": 45, - "rotationCenterY": 79 - }, - { - "costumeName": "penguin2 talk-b", + "costumeName": "Q-pixel", "baseLayerID": -1, - "baseLayerMD5": "394e79f5f9a462064ece2a9a6606a07d.svg", - "rotationCenterX": 50, - "rotationCenterY": 78 + "baseLayerMD5": "8c77c87dd0ed2613873cff0795ffc701.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 21 } ], "currentCostumeIndex": 0, @@ -30176,173 +27297,143 @@ } }, { - "name": "Penguin3", - "md5": "3f1173e00f664fca5f493b408e1e6d69.svg", + "name": "R-Pixel", + "md5": "c94daea3bd1e8cec36e1aa4e0b1d3f2b.svg", "type": "sprite", "tags": [ - "animals", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Penguin3", - "scripts": [ - [ - 142, - 432, - [ - [ - "setSizeTo:", - 100 - ] - ] - ] - ], + "objName": "R-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin3-a", - "baseLayerID": -1, - "baseLayerMD5": "3f1173e00f664fca5f493b408e1e6d69.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 98 }, { - "costumeName": "penguin3-b", - "baseLayerID": -1, - "baseLayerMD5": "814c2ea372e64b98d5de97b75773f54b.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 97 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "penguin3-c", - "baseLayerID": -1, - "baseLayerMD5": "e28cd8b76b23db393d06c3a057e2dc68.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 98 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Piano", - "md5": "a79a9794c290e5aa533230cc3d13795b.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Piano", - "sounds": [ + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, { - "soundName": "C piano", - "soundID": -1, - "md5": "d27ed8d953fe8f03c00f4d733d31d2cc.wav", - "sampleCount": 44100, + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "D piano", - "soundID": -1, - "md5": "51381ac422605ee8c7d64cfcbfd75efc.wav", - "sampleCount": 44100, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "E piano", - "soundID": -1, - "md5": "c818fdfaf8a0efcb562e24e794700a57.wav", - "sampleCount": 44100, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "F piano", - "soundID": -1, - "md5": "cdab3cce84f74ecf53e3941c6a003b5e.wav", - "sampleCount": 44100, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "G piano", - "soundID": -1, - "md5": "42bb2ed28e7023e111b33220e1594a6f.wav", - "sampleCount": 44100, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "A piano", - "soundID": -1, - "md5": "0727959edb2ea0525feed9b0c816991c.wav", - "sampleCount": 44100, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "B piano", - "soundID": -1, - "md5": "86826c6022a46370ed1afae69f1ab1b9.wav", - "sampleCount": 44100, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" }, { - "soundName": "C2 piano", - "soundID": -1, - "md5": "75d7d2c9b5d40dd4e1cb268111abf1a2.wav", - "sampleCount": 44100, + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" } ], "costumes": [ { - "costumeName": "piano", + "costumeName": "R-pixel", "baseLayerID": -1, - "baseLayerMD5": "a79a9794c290e5aa533230cc3d13795b.svg", + "baseLayerMD5": "c94daea3bd1e8cec36e1aa4e0b1d3f2b.svg", "bitmapResolution": 1, - "rotationCenterX": 142, - "rotationCenterY": 88 + "rotationCenterX": 13, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30358,120 +27449,143 @@ } }, { - "name": "Piano-Electric", - "md5": "337368e789abc17beb1a2bacbb9d3bdc.svg", + "name": "S-Pixel", + "md5": "2fedb1b52f4a4500938a3a52085344e6.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 4, - 8 + 1, + 1 ], "json": { - "objName": "Piano-Electric", + "objName": "S-Pixel", "sounds": [ { - "soundName": "C elec piano", - "soundID": -1, - "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", - "sampleCount": 44100, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "D elec piano", - "soundID": -1, - "md5": "835f136ca8d346a17b4d4baf8405be37.wav", - "sampleCount": 44100, - "rate": 22050, + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "E elec piano", - "soundID": -1, - "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", - "sampleCount": 44100, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "F elec piano", - "soundID": -1, - "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", - "sampleCount": 44100, - "rate": 22050, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" }, { - "soundName": "G elec piano", - "soundID": -1, - "md5": "39525f6545d62a95d05153f92d63301a.wav", - "sampleCount": 44100, + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "A elec piano", - "soundID": -1, - "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", - "sampleCount": 44100, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "B elec piano", - "soundID": -1, - "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", - "sampleCount": 44100, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "C2 elec piano", - "soundID": -1, - "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", - "sampleCount": 44100, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "keyboard-a", - "baseLayerID": -1, - "baseLayerMD5": "337368e789abc17beb1a2bacbb9d3bdc.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 24 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "keyboard-b", - "baseLayerID": -1, - "baseLayerMD5": "290216dfdf0cffea57743d91f130b2c7.svg", - "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" }, { - "costumeName": "keyboard-c", - "baseLayerID": -1, - "baseLayerMD5": "750cbbcd66cb893cd5a66ee0a663e486.svg", - "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" }, { - "costumeName": "keyboard-d", + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "S-pixel", "baseLayerID": -1, - "baseLayerMD5": "46b0d833ad845d88585fbd0cb4b070ee.svg", + "baseLayerMD5": "2fedb1b52f4a4500938a3a52085344e6.svg", "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 + "rotationCenterX": 13, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -30487,178 +27601,143 @@ } }, { - "name": "Pico", - "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "name": "T-Pixel", + "md5": "3f481b967f82014c7cf6dd14d438c32d.svg", "type": "sprite", "tags": [ - "fantasy", - "space", + "letters", "drawing", "vector" ], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Pico", + "objName": "T-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "pico-a", - "baseLayerID": -1, - "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 }, { - "costumeName": "pico-b", - "baseLayerID": -1, - "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "pico-c", - "baseLayerID": -1, - "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "pico-d", - "baseLayerID": -1, - "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Pico walking", - "md5": "8eab5fe20dd249bf22964298b1d377eb.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Pico walking", - "sounds": [ + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "Pico walk1", - "baseLayerID": -1, - "baseLayerMD5": "8eab5fe20dd249bf22964298b1d377eb.svg", - "rotationCenterX": 54, - "rotationCenterY": 71 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "Pico walk2", - "baseLayerID": -1, - "baseLayerMD5": "39ecd3c38d3f2cd81e3a17ee6c25699f.svg", - "rotationCenterX": 54, - "rotationCenterY": 71 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "Pico walk3", - "baseLayerID": -1, - "baseLayerMD5": "43f7d92dcf9eadf77c07a6fc1eb4104f.svg", - "rotationCenterX": 54, - "rotationCenterY": 70 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "Pico walk4", - "baseLayerID": -1, - "baseLayerMD5": "2582d012d57bca59bc0315c5c5954958.svg", - "rotationCenterX": 54, - "rotationCenterY": 70 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Planet2", - "md5": "978784738c1d9dd4b1d397fd18bdf406.svg", - "type": "sprite", - "tags": [ - "things", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Planet2", - "sounds": [ + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "planet2", + "costumeName": "T-pixel", "baseLayerID": -1, - "baseLayerMD5": "978784738c1d9dd4b1d397fd18bdf406.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "3f481b967f82014c7cf6dd14d438c32d.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -30674,13 +27753,11 @@ } }, { - "name": "Prince", - "md5": "a760bed1cfc28a30b2dc7fd045c90792.svg", + "name": "U-Pixel", + "md5": "a207644e4adb613f410f80a7e123db60.svg", "type": "sprite", "tags": [ - "people", - "fantasy", - "castle", + "letters", "drawing", "vector" ], @@ -30690,24 +27767,129 @@ 1 ], "json": { - "objName": "Prince", + "objName": "U-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "prince", + "costumeName": "U-pixel", "baseLayerID": -1, - "baseLayerMD5": "a760bed1cfc28a30b2dc7fd045c90792.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "a207644e4adb613f410f80a7e123db60.svg", + "bitmapResolution": 1, + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30723,13 +27905,11 @@ } }, { - "name": "Princess", - "md5": "75c96829e4b9f89378dfde0dee78db5f.svg", + "name": "V-Pixel", + "md5": "1bb20febe562fa291bea94be1e2d44ba.svg", "type": "sprite", "tags": [ - "people", - "fantasy", - "castle", + "letters", "drawing", "vector" ], @@ -30739,74 +27919,129 @@ 1 ], "json": { - "objName": "Princess", + "objName": "V-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "princess", - "baseLayerID": -1, - "baseLayerMD5": "75c96829e4b9f89378dfde0dee78db5f.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Rainbow", - "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", - "type": "sprite", - "tags": [ - "things", - "flying", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Rainbow", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "rainbow", + "costumeName": "V-pixel", "baseLayerID": -1, - "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "baseLayerMD5": "1bb20febe562fa291bea94be1e2d44ba.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 36 + "rotationCenterX": 14, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -30822,14 +28057,13 @@ } }, { - "name": "Referee", - "md5": "b510bc924622795216154727e18dd38e.gif", + "name": "W-Pixel", + "md5": "34b628e8c84cc551a1fa740b85afb750.svg", "type": "sprite", "tags": [ - "people", - "sports", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -30837,24 +28071,129 @@ 1 ], "json": { - "objName": "Referee", + "objName": "W-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "referee", + "costumeName": "W-pixel", "baseLayerID": -1, - "baseLayerMD5": "b510bc924622795216154727e18dd38e.gif", - "rotationCenterX": 41, - "rotationCenterY": 100 + "baseLayerMD5": "34b628e8c84cc551a1fa740b85afb750.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30870,12 +28209,11 @@ } }, { - "name": "Reindeer", - "md5": "0fff0b181cc4d9250b5b985cc283b049.svg", + "name": "X-Pixel", + "md5": "4cc2d68ceb08176481e882ed39e4f5d5.svg", "type": "sprite", "tags": [ - "fantasy", - "holiday", + "letters", "drawing", "vector" ], @@ -30885,25 +28223,129 @@ 1 ], "json": { - "objName": "Reindeer", + "objName": "X-Pixel", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "reindeer", + "costumeName": "X-pixel", "baseLayerID": -1, - "baseLayerMD5": "0fff0b181cc4d9250b5b985cc283b049.svg", + "baseLayerMD5": "4cc2d68ceb08176481e882ed39e4f5d5.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 70 + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -30919,13 +28361,12 @@ } }, { - "name": "Robot1", - "md5": "882919259f26462d74106e11d7c7e5c0.svg", + "name": "Y-Pixel", + "md5": "e6c377982c023761796eaed1047169e6.svg", "type": "sprite", "tags": [ - "fantasy", + "letters", "drawing", - "space", "vector" ], "info": [ @@ -30934,24 +28375,129 @@ 1 ], "json": { - "objName": "Robot1", + "objName": "Y-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "robot1", + "costumeName": "Y-pixel", "baseLayerID": -1, - "baseLayerMD5": "882919259f26462d74106e11d7c7e5c0.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "e6c377982c023761796eaed1047169e6.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -30967,12 +28513,11 @@ } }, { - "name": "Rocks", - "md5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", + "name": "Z-Pixel", + "md5": "ecadc3a562c9aa963717fcdf07ec96b4.svg", "type": "sprite", "tags": [ - "things", - "nature", + "letters", "drawing", "vector" ], @@ -30982,25 +28527,129 @@ 1 ], "json": { - "objName": "Rocks", + "objName": "Z-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "rocks", + "costumeName": "Z-pixel", "baseLayerID": -1, - "baseLayerMD5": "82c79fdb6a7d9c49ab7f70ee79a3d7f8.svg", + "baseLayerMD5": "ecadc3a562c9aa963717fcdf07ec96b4.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 15 + "rotationCenterX": 12, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -31016,14 +28665,13 @@ } }, { - "name": "Rory", - "md5": "7cca95c0a56646dd65771247ea288612.png", + "name": "0-Pixel", + "md5": "cd1f984997b44de464bbf86fc073b280.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", - "bitmap" + "vector" ], "info": [ 0, @@ -31031,129 +28679,129 @@ 1 ], "json": { - "objName": "Rory", + "objName": "0-Pixel", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "rory", - "baseLayerID": -1, - "baseLayerMD5": "7cca95c0a56646dd65771247ea288612.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 160 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ruby", - "md5": "c30210e8f719c3a4d2c7cc6917a39300.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Ruby", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ - { - "costumeName": "ruby-a", - "baseLayerID": -1, - "baseLayerMD5": "c30210e8f719c3a4d2c7cc6917a39300.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 172 }, { - "costumeName": "ruby-b", - "baseLayerID": -1, - "baseLayerMD5": "fc15fdbcc535473f6140cab28197f3be.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 142 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sailboat", - "md5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", - "type": "sprite", - "tags": [ - "transportation", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sailboat", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "sail-boat", + "costumeName": "0-pixel", "baseLayerID": -1, - "baseLayerMD5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", - "rotationCenterX": 112, - "rotationCenterY": 91 + "baseLayerMD5": "cd1f984997b44de464bbf86fc073b280.svg", + "bitmapResolution": 1, + "rotationCenterX": 13, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -31169,14 +28817,13 @@ } }, { - "name": "Sam", - "md5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", + "name": "1-Pixel", + "md5": "4ec3d6c4ef14112ed7c6ba6b9549da3b.svg", "type": "sprite", "tags": [ - "people", - "city", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, @@ -31184,137 +28831,129 @@ 1 ], "json": { - "objName": "Sam", + "objName": "1-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "sam", - "baseLayerID": -1, - "baseLayerMD5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", - "rotationCenterX": 58, - "rotationCenterY": 90 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Saxophone", - "md5": "a09b114b0652006ac66def94548073a9.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 8 - ], - "json": { - "objName": "Saxophone", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "C sax", - "soundID": -1, - "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", - "sampleCount": 9491, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "D sax", - "soundID": -1, - "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", - "sampleCount": 9555, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "E sax", - "soundID": -1, - "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", - "sampleCount": 7489, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "F sax", - "soundID": -1, - "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", - "sampleCount": 7361, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "G sax", - "soundID": -1, - "md5": "cefba5de46adfe5702485e0934bb1e13.wav", - "sampleCount": 7349, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, "format": "adpcm" }, { - "soundName": "A sax", - "soundID": -1, - "md5": "420991e0d6d99292c6d736963842536a.wav", - "sampleCount": 6472, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "B sax", - "soundID": -1, - "md5": "653ebe92d491b49ad5d8101d629f567b.wav", - "sampleCount": 9555, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" }, { - "soundName": "C2 sax", - "soundID": -1, - "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", - "sampleCount": 7349, + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "saxophone-a", - "baseLayerID": -1, - "baseLayerMD5": "a09b114b0652006ac66def94548073a9.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 80 - }, - { - "costumeName": "saxophone-b", + "costumeName": "1-pixel", "baseLayerID": -1, - "baseLayerMD5": "366c42cc65497f5007c9377a2d4d854b.svg", + "baseLayerMD5": "4ec3d6c4ef14112ed7c6ba6b9549da3b.svg", "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 80 + "rotationCenterX": 7, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -31330,13 +28969,11 @@ } }, { - "name": "Scarf1", - "md5": "9db18d2a2b3c9859654fc1b4832e6076.svg", + "name": "2-Pixel", + "md5": "d0136e77a646a3ad719aaa7f8f95a7ff.svg", "type": "sprite", "tags": [ - "dress-up", - "things", - "holiday", + "letters", "drawing", "vector" ], @@ -31346,31 +28983,135 @@ 1 ], "json": { - "objName": "Scarf1", + "objName": "2-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "scarf1", + "costumeName": "2-pixel", "baseLayerID": -1, - "baseLayerMD5": "9db18d2a2b3c9859654fc1b4832e6076.svg", + "baseLayerMD5": "d0136e77a646a3ad719aaa7f8f95a7ff.svg", "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 36 + "rotationCenterX": 14, + "rotationCenterY": 17 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.9, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -31380,13 +29121,11 @@ } }, { - "name": "Scarf2", - "md5": "ce66662165e2756070f1b12e0a7cb5db.svg", + "name": "3-Pixel", + "md5": "7c1700f0dcfb418662d29ba6faa114e7.svg", "type": "sprite", "tags": [ - "dress-up", - "things", - "holiday", + "letters", "drawing", "vector" ], @@ -31396,25 +29135,129 @@ 1 ], "json": { - "objName": "Scarf2", + "objName": "3-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "scarf2", + "costumeName": "3-pixel", "baseLayerID": -1, - "baseLayerMD5": "ce66662165e2756070f1b12e0a7cb5db.svg", + "baseLayerMD5": "7c1700f0dcfb418662d29ba6faa114e7.svg", "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 16 + "rotationCenterX": 14, + "rotationCenterY": 18 } ], "currentCostumeIndex": 0, @@ -31423,18 +29266,19 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Scratch Logo", - "md5": "978b16d68fa7834dfb327fa3e2c4ba3b.svg", + "name": "4-Pixel", + "md5": "6238b9b95fad7f7aa9cef9bde5bde474.svg", "type": "sprite", "tags": [ - "things", + "letters", + "drawing", "vector" ], "info": [ @@ -31443,25 +29287,129 @@ 1 ], "json": { - "objName": "Scratch Logo", + "objName": "4-Pixel", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "scratch logo", + "costumeName": "4-pixel", "baseLayerID": -1, - "baseLayerMD5": "978b16d68fa7834dfb327fa3e2c4ba3b.svg", + "baseLayerMD5": "6238b9b95fad7f7aa9cef9bde5bde474.svg", "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 26 + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -31477,53 +29425,143 @@ } }, { - "name": "Shark", - "md5": "7c0a907eae79462f69f8e2af8e7df828.svg", + "name": "5-Pixel", + "md5": "aef915acf1d49deed46692411e6c6039.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "underwater", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Shark", + "objName": "5-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "shark-a ", - "baseLayerID": -1, - "baseLayerMD5": "7c0a907eae79462f69f8e2af8e7df828.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "shark-b ", - "baseLayerID": -1, - "baseLayerMD5": "cff9ae87a93294693a0650b38a7a33d2.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "shark-c ", + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "5-pixel", "baseLayerID": -1, - "baseLayerMD5": "afeae3f998598424f7c50918507f6ce6.svg", - "rotationCenterX": 77, - "rotationCenterY": 37 + "baseLayerMD5": "aef915acf1d49deed46692411e6c6039.svg", + "bitmapResolution": 1, + "rotationCenterX": 12, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -31539,48 +29577,143 @@ } }, { - "name": "Shirt", - "md5": "dbb0eaa9d7af0f5971afdee0192c8b51.svg", + "name": "6-Pixel", + "md5": "e6ad1d1fe44a1c63c8f99c0bbb893a44.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Shirt", + "objName": "6-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "shirt-a", - "baseLayerID": -1, - "baseLayerMD5": "dbb0eaa9d7af0f5971afdee0192c8b51.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - }, - { - "costumeName": "shirt-b", + "costumeName": "6-pixel", "baseLayerID": -1, - "baseLayerMD5": "92d009fb104990da9798378ae5e4e1cb.svg", + "baseLayerMD5": "e6ad1d1fe44a1c63c8f99c0bbb893a44.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 48 + "rotationCenterX": 14, + "rotationCenterY": 17 } ], "currentCostumeIndex": 0, @@ -31589,94 +29722,150 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Shirt2", - "md5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", + "name": "7-Pixel", + "md5": "469b4fb6f6f8721e2c244ae9c71a7e66.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Shirt2", + "objName": "7-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "shirt2-a", - "baseLayerID": -1, - "baseLayerMD5": "5946e7a1e36c6d97ae47d41dd8595a41.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "shirt2-a2", - "baseLayerID": -1, - "baseLayerMD5": "5b78ab09592126b6bbe2d4907d203909.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt Blouse", - "md5": "918a507af6bbae9e7f36f0d949900838.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Shirt Blouse", "costumes": [ { - "costumeName": "shirt blouse", + "costumeName": "7-pixel", "baseLayerID": -1, - "baseLayerMD5": "918a507af6bbae9e7f36f0d949900838.svg", + "baseLayerMD5": "469b4fb6f6f8721e2c244ae9c71a7e66.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 28 + "rotationCenterX": 12, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -31685,102 +29874,150 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Shirt Collar", - "md5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", + "name": "8-Pixel", + "md5": "5bfcf2c715b81ae380ae2983bb4c5bb2.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Shirt Collar", + "objName": "8-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "shirt collar-a", - "baseLayerID": -1, - "baseLayerMD5": "b7ecf6503e27e9ab5c086eaf07d22b94.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "shirt collar-b", - "baseLayerID": -1, - "baseLayerMD5": "f1b20c3350e8a7e92a2fb1925ad4158b.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "shirt collar-c", - "baseLayerID": -1, - "baseLayerMD5": "5f04b99416a794e04d0855f446780f18.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt-T", - "md5": "5d7fa4f1788f03d2962f1624d6eac800.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Shirt-T", "costumes": [ { - "costumeName": "shirt-t", + "costumeName": "8-pixel", "baseLayerID": -1, - "baseLayerMD5": "5d7fa4f1788f03d2962f1624d6eac800.svg", + "baseLayerMD5": "5bfcf2c715b81ae380ae2983bb4c5bb2.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 28 + "rotationCenterX": 14, + "rotationCenterY": 19 } ], "currentCostumeIndex": 0, @@ -31789,19 +30026,18 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Shoes1", - "md5": "ffab4cc284070b50ac317e515f59f7d8.svg", + "name": "9-Pixel", + "md5": "8014a66c758f1bc389194c988badb382.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], @@ -31811,74 +30047,129 @@ 1 ], "json": { - "objName": "Shoes1", + "objName": "9-Pixel", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "shoes1", - "baseLayerID": -1, - "baseLayerMD5": "ffab4cc284070b50ac317e515f59f7d8.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shoes2", - "md5": "1dc5d568d98405c370b91a230397a7f9.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Shoes2", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "shoes2", + "costumeName": "9-pixel", "baseLayerID": -1, - "baseLayerMD5": "1dc5d568d98405c370b91a230397a7f9.svg", + "baseLayerMD5": "8014a66c758f1bc389194c988badb382.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 8 + "rotationCenterX": 12, + "rotationCenterY": 20 } ], "currentCostumeIndex": 0, @@ -31887,46 +30178,166 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Singer1", - "md5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", + "name": "A-Story", + "md5": "a541431ea1b67b2100b2ef59927df0d7.svg", "type": "sprite", "tags": [ - "people", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Singer1", + "objName": "A-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "Singer1", + "costumeName": "A-story-1", "baseLayerID": -1, - "baseLayerMD5": "e47ef1af3b925e5ac9e3b3f809d440b3.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "a541431ea1b67b2100b2ef59927df0d7.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 26 + }, + { + "costumeName": "A-story-2", + "baseLayerID": -1, + "baseLayerMD5": "f277943adf8d79b41b9b568321a786ee.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 26 + }, + { + "costumeName": "A-story-3", + "baseLayerID": -1, + "baseLayerMD5": "cc0cc7ae3240eab7d040e148cc663325.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -31942,147 +30353,159 @@ } }, { - "name": "Skates", - "md5": "00e5e173400662875a26bb7d6556346a.svg", + "name": "B-Story", + "md5": "3f3b274d161bae432bd5966a33114fd0.svg", "type": "sprite", "tags": [ - "dress-up", - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Skates", + "objName": "B-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "skates", - "baseLayerID": -1, - "baseLayerMD5": "00e5e173400662875a26bb7d6556346a.svg", - "bitmapResolution": 1, - "rotationCenterX": 44, - "rotationCenterY": -21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "SL Hip-Hop", - "md5": "2d2b577a12a51aa4448ad3e7e2a07079.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 8, - 1 - ], - "json": { - "objName": "SL Hip-Hop", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ + "format": "" + }, { - "costumeName": "sl top stand", - "baseLayerID": -1, - "baseLayerMD5": "2d2b577a12a51aa4448ad3e7e2a07079.png", - "bitmapResolution": 2, - "rotationCenterX": 64, - "rotationCenterY": 233 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" }, { - "costumeName": "sl top R leg", - "baseLayerID": -1, - "baseLayerMD5": "ba01e9c4448285b7b8a63e98d89ac1d7.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 230 + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" }, { - "costumeName": "sl top L leg", - "baseLayerID": -1, - "baseLayerMD5": "b274db2a4fa913555dae028f327e7423.png", - "bitmapResolution": 2, - "rotationCenterX": 149, - "rotationCenterY": 245 + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" }, { - "costumeName": "sl top ready", - "baseLayerID": -1, - "baseLayerMD5": "3df3afb72314807fc6c58075da124b84.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 198 + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "sl top L cross", - "baseLayerID": -1, - "baseLayerMD5": "f26ea2f0d0baaa5aaed3cd96d7843206.png", - "bitmapResolution": 2, - "rotationCenterX": 50, - "rotationCenterY": 214 + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" }, { - "costumeName": "sl top R cross", + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + } + ], + "costumes": [ + { + "costumeName": "B-story-1", "baseLayerID": -1, - "baseLayerMD5": "b46163522a53150fdb6a44461738e9ae.png", - "bitmapResolution": 2, - "rotationCenterX": 110, - "rotationCenterY": 200 + "baseLayerMD5": "3f3b274d161bae432bd5966a33114fd0.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 25 }, { - "costumeName": "sl pop L arm", + "costumeName": "B-story-2", "baseLayerID": -1, - "baseLayerMD5": "48fcc33505fbd3c65d1f7bfbb4745a13.png", - "bitmapResolution": 2, - "rotationCenterX": 145, - "rotationCenterY": 174 + "baseLayerMD5": "07fa4ebc421d84743b6ced189dd2f9cf.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 25 }, { - "costumeName": "sl pop R arm", + "costumeName": "B-story-3", "baseLayerID": -1, - "baseLayerMD5": "ffae2eb189d6efc97efc91e93ed4d8bf.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 237 + "baseLayerMD5": "6c9a9203155f93f24f31b30e3bd76b6d.svg", + "bitmapResolution": 1, + "rotationCenterX": 18, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -32098,195 +30521,159 @@ } }, { - "name": "Snowflake", - "md5": "67de2af723246de37d7379b76800ee0b.svg", + "name": "C-Story", + "md5": "786383a7baf7ff58bdcbd55d8a7395a1.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Snowflake", + "objName": "C-Story", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "snowflake", - "baseLayerID": -1, - "baseLayerMD5": "67de2af723246de37d7379b76800ee0b.svg", - "bitmapResolution": 1, - "rotationCenterX": 104, - "rotationCenterY": 103 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.65, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Snowman", - "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", - "type": "sprite", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Snowman", - "sounds": [ + "format": "adpcm" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "snowman", - "baseLayerID": -1, - "baseLayerMD5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Soccer Ball", - "md5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", - "type": "sprite", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Soccer Ball", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "soccer ball", - "baseLayerID": -1, - "baseLayerMD5": "4e4cc84380ccf6d4e59e53bc6d3a0a3f.svg", - "rotationCenterX": 32, - "rotationCenterY": 34 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Spaceship", - "md5": "028b6d5210a4a94d5cd3d2001fd3d74d.svg", - "type": "sprite", - "tags": [ - "transportation", - "space", - "fantasy", - "flying", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Spaceship", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, "rate": 11025, "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "spaceship-a", + "costumeName": "C-story-1", "baseLayerID": -1, - "baseLayerMD5": "028b6d5210a4a94d5cd3d2001fd3d74d.svg", + "baseLayerMD5": "786383a7baf7ff58bdcbd55d8a7395a1.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 84 + "rotationCenterX": 22, + "rotationCenterY": 26 }, { - "costumeName": "spaceship-b", + "costumeName": "C-story-2", "baseLayerID": -1, - "baseLayerMD5": "55e3d48245934393402ab214c122ed8f.svg", + "baseLayerMD5": "1045c56c4be3d8d0650579864417fbc7.svg", "bitmapResolution": 1, - "rotationCenterX": 62, - "rotationCenterY": 83 + "rotationCenterX": 22, + "rotationCenterY": 26 + }, + { + "costumeName": "C-story-3", + "baseLayerID": -1, + "baseLayerMD5": "c8fd35294d17a369fecb6d6e4725d04a.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -32302,311 +30689,129 @@ } }, { - "name": "Speaker", - "md5": "44dc3a2ec161999545914d1f77332d76.svg", + "name": "D-Story", + "md5": "ec60df3b4dfde735f72d3a641b737800.svg", "type": "sprite", "tags": [ - "things", - "music", - "dance", + "letters", "drawing", "vector" ], "info": [ - 1, - 1, - 7 + 0, + 3, + 1 ], "json": { - "objName": "Speaker", - "variables": [ + "objName": "D-Story", + "sounds": [ { - "name": "scale degree", - "value": 1, - "isPersistent": false + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" }, { - "name": "octave", - "value": 0, - "isPersistent": false + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" }, { - "name": "note number", - "value": 62, - "isPersistent": false + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" }, { - "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" - ] - ] - ] - ] - ], - "sounds": [ + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, { - "soundName": "drive around", - "soundID": -1, - "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", - "sampleCount": 44096, + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "scratchy beat", - "soundID": -1, - "md5": "289dc558e076971e74dd1a0bd55719b1.wav", - "sampleCount": 44096, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "drum jam", - "soundID": -1, - "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", - "sampleCount": 44288, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "cymbal echo", - "soundID": -1, - "md5": "bb243badd1201b2607bf2513df10cd97.wav", - "sampleCount": 44326, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "drum satellite", - "soundID": -1, - "md5": "079067d7909f791b29f8be1c00fc2131.wav", - "sampleCount": 44096, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "kick back", - "soundID": -1, - "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", - "sampleCount": 44748, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "drum funky", - "soundID": -1, + "soundName": "funky loop", + "soundID": 13, "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", "sampleCount": 44748, "rate": 22050, @@ -32615,12 +30820,28 @@ ], "costumes": [ { - "costumeName": "speaker", + "costumeName": "D-story-1", "baseLayerID": -1, - "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg", + "baseLayerMD5": "ec60df3b4dfde735f72d3a641b737800.svg", "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 79 + "rotationCenterX": 25, + "rotationCenterY": 26 + }, + { + "costumeName": "D-story-2", + "baseLayerID": -1, + "baseLayerMD5": "3e4cc4cff08bb42bc690eff66dffbbe9.svg", + "bitmapResolution": 1, + "rotationCenterX": 25, + "rotationCenterY": 26 + }, + { + "costumeName": "D-story-3", + "baseLayerID": -1, + "baseLayerMD5": "bd7f984fe82d9d0fdcff0a87b3c0f9e0.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -32636,39 +30857,159 @@ } }, { - "name": "Squirrel", - "md5": "7e24c99c1b853e52f8e7f9004416fa34.png", + "name": "E-Story", + "md5": "c227b91edab98c183bb0700acf00764f.svg", "type": "sprite", "tags": [ - "animals", - "bitmap", - "photo" + "letters", + "drawing", + "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Squirrel", + "objName": "E-Story", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "squirrel1", + "costumeName": "E-story-1", "baseLayerID": -1, - "baseLayerMD5": "7e24c99c1b853e52f8e7f9004416fa34.png", - "bitmapResolution": 2, - "rotationCenterX": 158, - "rotationCenterY": 146 + "baseLayerMD5": "c227b91edab98c183bb0700acf00764f.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 25 + }, + { + "costumeName": "E-story-2", + "baseLayerID": -1, + "baseLayerMD5": "8bba14966fe35f0dccb66ef06a9843ca.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 25 + }, + { + "costumeName": "E-story-3", + "baseLayerID": -1, + "baseLayerMD5": "e8cfc63375f6d6c2a580823489427f38.svg", + "bitmapResolution": 1, + "rotationCenterX": 18, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -32684,46 +31025,165 @@ } }, { - "name": "Star1", - "md5": "ab0914e53e360477275e58b83ec4d423.svg", + "name": "F-Story", + "md5": "0ffc2ff1c96a596a72552c85c9a5be1a.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Star1", + "objName": "F-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "star1", + "costumeName": "F-story-1", "baseLayerID": -1, - "baseLayerMD5": "ab0914e53e360477275e58b83ec4d423.svg", + "baseLayerMD5": "0ffc2ff1c96a596a72552c85c9a5be1a.svg", "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 19 + "rotationCenterX": 18, + "rotationCenterY": 26 + }, + { + "costumeName": "F-story-2", + "baseLayerID": -1, + "baseLayerMD5": "0dbe4a064abea1a9a3bc0d2732643e6b.svg", + "bitmapResolution": 1, + "rotationCenterX": 18, + "rotationCenterY": 25 + }, + { + "costumeName": "F-story-3", + "baseLayerID": -1, + "baseLayerMD5": "3db373f4482e391e66d1b06335a96144.svg", + "bitmapResolution": 1, + "rotationCenterX": 16, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.9, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -32733,87 +31193,159 @@ } }, { - "name": "Star2", - "md5": "0a0ef50bb5a59be1785c8bb12cdacae6.svg", + "name": "G-Story", + "md5": "d39a8a56ea511a40d3b98300dbd19f9b.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Star2", + "objName": "G-Story", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "star2", + "costumeName": "G-story-1", "baseLayerID": -1, - "baseLayerMD5": "0a0ef50bb5a59be1785c8bb12cdacae6.svg", + "baseLayerMD5": "d39a8a56ea511a40d3b98300dbd19f9b.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 27 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Star3", - "md5": "04da262057dfe130860086031e5018ef.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 0 - ], - "json": { - "objName": "Star3", - "costumes": [ + "rotationCenterX": 23, + "rotationCenterY": 25 + }, { - "costumeName": "star3-a", + "costumeName": "G-story-2", "baseLayerID": -1, - "baseLayerMD5": "04da262057dfe130860086031e5018ef.svg", + "baseLayerMD5": "991023d303f79ce092f070392ffbd69f.svg", "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 55 + "rotationCenterX": 23, + "rotationCenterY": 25 }, { - "costumeName": "star3-b", + "costumeName": "G-story-3", "baseLayerID": -1, - "baseLayerMD5": "a082be13c0e5d17230f448dd55029a7d.svg", + "baseLayerMD5": "38f22c0d8dbe541bde409ba1f241d4c1.svg", "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 34 + "rotationCenterX": 21, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -32829,132 +31361,159 @@ } }, { - "name": "Starfish", - "md5": "3d1101bbc24ae292a36356af325f660c.svg", + "name": "H-Story", + "md5": "28461ea7b94a55ce4ecf54241a0b7523.svg", "type": "sprite", "tags": [ - "animals", + "letters", "drawing", - "underwater", "vector" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Starfish", + "objName": "H-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "starfish-a", - "baseLayerID": -1, - "baseLayerMD5": "3d1101bbc24ae292a36356af325f660c.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "starfish-b ", - "baseLayerID": -1, - "baseLayerMD5": "ad8007f4e63693984d4adc466ffa3ad2.svg", - "rotationCenterX": 53, - "rotationCenterY": 60 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Stop", - "md5": "5b9e3e8edffb0bd4914113609eec5e04.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Stop", "costumes": [ { - "costumeName": "stop", + "costumeName": "H-story-1", "baseLayerID": -1, - "baseLayerMD5": "5b9e3e8edffb0bd4914113609eec5e04.svg", + "baseLayerMD5": "28461ea7b94a55ce4ecf54241a0b7523.svg", "bitmapResolution": 1, - "rotationCenterX": 25, + "rotationCenterX": 24, "rotationCenterY": 25 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Street Cleaner", - "md5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", - "type": "sprite", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Street Cleaner", - "sounds": [ + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ + "costumeName": "H-story-2", + "baseLayerID": -1, + "baseLayerMD5": "ca33be5270308a695c9b88af73f590dc.svg", + "bitmapResolution": 1, + "rotationCenterX": 24, + "rotationCenterY": 25 + }, { - "costumeName": "street-cleaner-mit", + "costumeName": "H-story-3", "baseLayerID": -1, - "baseLayerMD5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", - "rotationCenterX": 100, - "rotationCenterY": 59 + "baseLayerMD5": "668ba2b891f82ce78d8590f0287632b1.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -32970,88 +31529,159 @@ } }, { - "name": "Sun", - "md5": "55c931c65456822c0c56a2b30e3e550d.svg", + "name": "I-Story", + "md5": "cdf36c8bd803819996a392089b040c3d.svg", "type": "sprite", "tags": [ - "things", - "space", + "letters", "drawing", - "vector", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Sun", + "objName": "I-Story", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "sun", - "baseLayerID": -1, - "baseLayerMD5": "55c931c65456822c0c56a2b30e3e550d.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sunglasses1", - "md5": "424393e8705aeadcfecb8559ce4dcea2.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sunglasses1", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "sunglasses1", + "costumeName": "I-story-1", "baseLayerID": -1, - "baseLayerMD5": "424393e8705aeadcfecb8559ce4dcea2.svg", - "rotationCenterX": 37, - "rotationCenterY": 14 + "baseLayerMD5": "cdf36c8bd803819996a392089b040c3d.svg", + "bitmapResolution": 1, + "rotationCenterX": 9, + "rotationCenterY": 26 + }, + { + "costumeName": "I-story-2", + "baseLayerID": -1, + "baseLayerMD5": "7b3ae96764795727fa1cb0be68a9ca5e.svg", + "bitmapResolution": 1, + "rotationCenterX": 9, + "rotationCenterY": 26 + }, + { + "costumeName": "I-story-3", + "baseLayerID": -1, + "baseLayerMD5": "3475aa570304accb7e6dbd2516234135.svg", + "bitmapResolution": 1, + "rotationCenterX": 7, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -33067,39 +31697,159 @@ } }, { - "name": "Sunglasses2", - "md5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", + "name": "J-Story", + "md5": "6a10a69d1ce075a24abc8073bb402ab6.svg", "type": "sprite", "tags": [ - "dress-up", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Sunglasses2", + "objName": "J-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "sunglasses2", + "costumeName": "J-story-1", "baseLayerID": -1, - "baseLayerMD5": "3185d2295bbf2c5ebd0688c9e4f13076.svg", - "rotationCenterX": 29, - "rotationCenterY": 10 + "baseLayerMD5": "6a10a69d1ce075a24abc8073bb402ab6.svg", + "bitmapResolution": 1, + "rotationCenterX": 14, + "rotationCenterY": 25 + }, + { + "costumeName": "J-story-2", + "baseLayerID": -1, + "baseLayerMD5": "0ab9a94fc2e32160efc113a8e5ffb984.svg", + "bitmapResolution": 1, + "rotationCenterX": 14, + "rotationCenterY": 25 + }, + { + "costumeName": "J-story-3", + "baseLayerID": -1, + "baseLayerMD5": "c9356a022cfbc25be6c484e9781e4637.svg", + "bitmapResolution": 1, + "rotationCenterX": 12, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -33115,48 +31865,159 @@ } }, { - "name": "Taco", - "md5": "d224b30c54bd4d6000c935938c7f5d7e.svg", + "name": "K-Story", + "md5": "76812d04542ffbd8aa77d593f1bced44.svg", "type": "sprite", "tags": [ - "things", - "flying", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Taco", + "objName": "K-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "taco-a", + "costumeName": "K-story-1", "baseLayerID": -1, - "baseLayerMD5": "d224b30c54bd4d6000c935938c7f5d7e.svg", + "baseLayerMD5": "76812d04542ffbd8aa77d593f1bced44.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 15 + "rotationCenterX": 24, + "rotationCenterY": 26 }, { - "costumeName": "taco-b", + "costumeName": "K-story-2", "baseLayerID": -1, - "baseLayerMD5": "6dee4f866d79e6475d9824ba11973037.svg", + "baseLayerMD5": "ef02339e8a0382367f0b5a414915b885.svg", "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 15 + "rotationCenterX": 24, + "rotationCenterY": 26 + }, + { + "costumeName": "K-story-3", + "baseLayerID": -1, + "baseLayerMD5": "07977708617d12381b22d1ee0f4926a3.svg", + "bitmapResolution": 1, + "rotationCenterX": 21, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -33172,39 +32033,159 @@ } }, { - "name": "Tennis Ball", - "md5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", + "name": "L-Story", + "md5": "444e9ceca500ef96a92879678109ef38.svg", "type": "sprite", "tags": [ - "things", - "sports", - "photo", - "bitmap" + "letters", + "drawing", + "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Tennis Ball", + "objName": "L-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "tennisball", + "costumeName": "L-story-1", "baseLayerID": -1, - "baseLayerMD5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", - "rotationCenterX": 15, - "rotationCenterY": 15 + "baseLayerMD5": "444e9ceca500ef96a92879678109ef38.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 26 + }, + { + "costumeName": "L-story-2", + "baseLayerID": -1, + "baseLayerMD5": "067c21a9b2f91ed33e07131ce5a59210.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 26 + }, + { + "costumeName": "L-story-3", + "baseLayerID": -1, + "baseLayerMD5": "488d66f17c0089a7796d44cfc70792e8.svg", + "bitmapResolution": 1, + "rotationCenterX": 17, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -33220,122 +32201,159 @@ } }, { - "name": "Tera", - "md5": "b54a4a9087435863ab6f6c908f1cac99.svg", + "name": "M-Story", + "md5": "9197a1edb925c94fc912367a2943bc69.svg", "type": "sprite", "tags": [ - "fantasy", - "space", + "letters", "drawing", "vector" ], "info": [ 0, - 4, + 3, 1 ], "json": { - "objName": "Tera", + "objName": "M-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "tera-a", - "baseLayerID": -1, - "baseLayerMD5": "b54a4a9087435863ab6f6c908f1cac99.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "costumeName": "tera-b", - "baseLayerID": -1, - "baseLayerMD5": "1e6b3a29351cda80d1a70a3cc0e499f2.svg", - "rotationCenterX": 49, - "rotationCenterY": 64 + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" }, { - "costumeName": "tera-c", - "baseLayerID": -1, - "baseLayerMD5": "7edf116cbb7111292361431521ae699e.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" }, { - "costumeName": "tera-d", - "baseLayerID": -1, - "baseLayerMD5": "7c3c9c8b5f4ac77de2036175712a777a.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Text", - "md5": "5ebbfead1d5728f6e93a4259b699f2e9.svg", - "type": "sprite", - "tags": [ - "letters", - "things", - "vector" - ], - "info": [ - 0, - 4, - 0 - ], - "json": { - "objName": "Text", "costumes": [ { - "costumeName": "text awesome", - "baseLayerID": -1, - "baseLayerMD5": "5ebbfead1d5728f6e93a4259b699f2e9.svg", - "bitmapResolution": 1, - "rotationCenterX": 109, - "rotationCenterY": 32 - }, - { - "costumeName": "text keep scratching", + "costumeName": "M-story-1", "baseLayerID": -1, - "baseLayerMD5": "b3de9a77e2c1bb2f3e29f29a03d869ea.svg", + "baseLayerMD5": "9197a1edb925c94fc912367a2943bc69.svg", "bitmapResolution": 1, - "rotationCenterX": 135, - "rotationCenterY": 24 + "rotationCenterX": 30, + "rotationCenterY": 25 }, { - "costumeName": "text valentine's day", + "costumeName": "M-story-2", "baseLayerID": -1, - "baseLayerMD5": "a765b830814192ab323b5893a65cabfa.svg", + "baseLayerMD5": "55f00a23d0f5cc57be9533f126a7ac8c.svg", "bitmapResolution": 1, - "rotationCenterX": 172, - "rotationCenterY": 30 + "rotationCenterX": 30, + "rotationCenterY": 25 }, { - "costumeName": "text Halloween", + "costumeName": "M-story-3", "baseLayerID": -1, - "baseLayerMD5": "7aee725d72bc077424690a0acce8589b.svg", + "baseLayerMD5": "613df2bd97784a239ab992f7a95458a0.svg", "bitmapResolution": 1, - "rotationCenterX": 165, - "rotationCenterY": 34 + "rotationCenterX": 27, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -33347,7 +32365,25 @@ "isDraggable": false, "indexInLibrary": 100000, "visible": true, - "spriteInfo": {}, + "spriteInfo": {} + } + }, + { + "name": "N-Story", + "md5": "d604d95ad1367813fdc67c362bb9d298.svg", + "type": "sprite", + "tags": [ + "letters", + "drawing", + "vector" + ], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "N-Story", "sounds": [ { "soundName": "boing", @@ -33461,42 +32497,31 @@ "rate": 22050, "format": "adpcm" } - ] - } - }, - { - "name": "Trampoline", - "md5": "20b16bcb61396df304cad5e8886ceb46.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Trampoline", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } ], "costumes": [ { - "costumeName": "trampoline", + "costumeName": "N-story-1", "baseLayerID": -1, - "baseLayerMD5": "20b16bcb61396df304cad5e8886ceb46.png", - "rotationCenterX": 100, - "rotationCenterY": 41 + "baseLayerMD5": "d604d95ad1367813fdc67c362bb9d298.svg", + "bitmapResolution": 1, + "rotationCenterX": 26, + "rotationCenterY": 25 + }, + { + "costumeName": "N-story-2", + "baseLayerID": -1, + "baseLayerMD5": "5e07ee61cb20bc575720774584dfec53.svg", + "bitmapResolution": 1, + "rotationCenterX": 26, + "rotationCenterY": 25 + }, + { + "costumeName": "N-story-3", + "baseLayerID": -1, + "baseLayerMD5": "435697335345f946d943c1d89fdb459a.svg", + "bitmapResolution": 1, + "rotationCenterX": 24, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -33512,95 +32537,165 @@ } }, { - "name": "Tree1", - "md5": "8c40e2662c55d17bc384f47165ac43c1.svg", + "name": "O-Story", + "md5": "46173e0ec42c17d22b29c88929c49f2c.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Tree1", + "objName": "O-Story", "sounds": [ { - "soundName": "tom drum", - "soundID": -1, - "md5": "5a8b8678d37a860dd6c08082d5cda3c2.wav", - "sampleCount": 35803, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, "format": "adpcm" - } - ], - "costumes": [ + }, { - "costumeName": "tree1", - "baseLayerID": -1, - "baseLayerMD5": "8c40e2662c55d17bc384f47165ac43c1.svg", - "bitmapResolution": 1, - "rotationCenterX": 77, - "rotationCenterY": 126 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.95, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tree2", - "md5": "d4cafdb83f5ff518383f7174817243e6.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Tree2", - "sounds": [ + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "tree2", + "costumeName": "O-story-1", "baseLayerID": -1, - "baseLayerMD5": "d4cafdb83f5ff518383f7174817243e6.svg", + "baseLayerMD5": "46173e0ec42c17d22b29c88929c49f2c.svg", "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 104 + "rotationCenterX": 25, + "rotationCenterY": 25 + }, + { + "costumeName": "O-story-2", + "baseLayerID": -1, + "baseLayerMD5": "e8fa671bb1ca53c044bfb27225321c25.svg", + "bitmapResolution": 1, + "rotationCenterX": 24, + "rotationCenterY": 25 + }, + { + "costumeName": "O-story-3", + "baseLayerID": -1, + "baseLayerMD5": "a132bf3d4084ef8ca9e0797f64c0f082.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 0.9, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -33610,54 +32705,165 @@ } }, { - "name": "Tree-lights", - "md5": "177682396be2961367a50289a5552314.svg", + "name": "P-Story", + "md5": "e6e5ccc4bd44680b4c21fabefc009e4f.svg", "type": "sprite", "tags": [ - "things", - "holiday", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Tree-lights", + "objName": "P-Story", "sounds": [ { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "tree-lights-a", + "costumeName": "P-story-1", "baseLayerID": -1, - "baseLayerMD5": "177682396be2961367a50289a5552314.svg", + "baseLayerMD5": "e6e5ccc4bd44680b4c21fabefc009e4f.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 77 + "rotationCenterX": 20, + "rotationCenterY": 25 }, { - "costumeName": "tree-lights-b", + "costumeName": "P-story-2", "baseLayerID": -1, - "baseLayerMD5": "b0282c029046fd1ed0541675911fe8bb.svg", + "baseLayerMD5": "781c42f9da36bbc0ee3775f18ac98124.svg", "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 76 + "rotationCenterX": 20, + "rotationCenterY": 25 + }, + { + "costumeName": "P-story-3", + "baseLayerID": -1, + "baseLayerMD5": "bcaec7c778920d8d74c275c1aff634fe.svg", + "bitmapResolution": 1, + "rotationCenterX": 17, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1.3000000000000005, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -33667,49 +32873,159 @@ } }, { - "name": "Trees", - "md5": "866ed2c2971bb04157e14e935ac8521c.svg", + "name": "Q-Story", + "md5": "24c5beac46f4452bffe23e3c4e8a4a4c.svg", "type": "sprite", "tags": [ - "city", - "flying", - "things", + "letters", "drawing", "vector" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Trees", + "objName": "Q-Story", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "trees-a", + "costumeName": "Q-story-1", "baseLayerID": -1, - "baseLayerMD5": "866ed2c2971bb04157e14e935ac8521c.svg", + "baseLayerMD5": "24c5beac46f4452bffe23e3c4e8a4a4c.svg", "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 94 + "rotationCenterX": 25, + "rotationCenterY": 30 }, { - "costumeName": "trees-b", + "costumeName": "Q-story-2", "baseLayerID": -1, - "baseLayerMD5": "f1393dde1bb0fc512577995b27616d86.svg", + "baseLayerMD5": "31f28be74dc7de42a5c4a38504d666ca.svg", "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 87 + "rotationCenterX": 25, + "rotationCenterY": 30 + }, + { + "costumeName": "Q-story-3", + "baseLayerID": -1, + "baseLayerMD5": "aef19097378515308e934a79f147032e.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 29 } ], "currentCostumeIndex": 0, @@ -33725,104 +33041,159 @@ } }, { - "name": "Trombone", - "md5": "7d7098a45ab54def8d919141e90db4c5.svg", + "name": "R-Story", + "md5": "ef26045ebaccbf271ca2370ed95c73ab.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 8 + 3, + 1 ], "json": { - "objName": "Trombone", + "objName": "R-Story", "sounds": [ { - "soundName": "C trombone", - "soundID": -1, - "md5": "821b23a489201a0f21f47ba8528ba47f.wav", - "sampleCount": 19053, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "D trombone", - "soundID": -1, - "md5": "f3afca380ba74372d611d3f518c2f35b.wav", - "sampleCount": 17339, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "E trombone", - "soundID": -1, - "md5": "c859fb0954acaa25c4b329df5fb76434.wav", - "sampleCount": 16699, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "F trombone", - "soundID": -1, - "md5": "d6758470457aac2aa712717a676a5163.wav", - "sampleCount": 19373, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "G trombone", - "soundID": -1, - "md5": "9436fd7a0eacb4a6067e7db14236dde1.wav", - "sampleCount": 17179, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "A trombone", - "soundID": -1, - "md5": "863ccc8ba66e6dabbce2a1261c22be0f.wav", - "sampleCount": 17227, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, "format": "adpcm" }, { - "soundName": "B trombone", - "soundID": -1, - "md5": "85b663229525b73d9f6647f78eb23e0a.wav", - "sampleCount": 15522, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "C2 trombone", - "soundID": -1, - "md5": "68aec107bd3633b2ee40c532eedc3897.wav", - "sampleCount": 13904, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "trombone-a", + "costumeName": "R-story-1", "baseLayerID": -1, - "baseLayerMD5": "7d7098a45ab54def8d919141e90db4c5.svg", + "baseLayerMD5": "ef26045ebaccbf271ca2370ed95c73ab.svg", "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 43 + "rotationCenterX": 22, + "rotationCenterY": 26 }, { - "costumeName": "trombone-b", + "costumeName": "R-story-2", "baseLayerID": -1, - "baseLayerMD5": "08edef976dbc09e8b62bce0f4607ea4a.svg", + "baseLayerMD5": "926f8ff770cb15b42b12f209fd02d98c.svg", "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 43 + "rotationCenterX": 22, + "rotationCenterY": 26 + }, + { + "costumeName": "R-story-3", + "baseLayerID": -1, + "baseLayerMD5": "a66d8f0ba6d40c624873edc8df58c014.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -33838,110 +33209,165 @@ } }, { - "name": "Trumpet", - "md5": "3bcbd84df7924b6f97a2fa5d9bce56c8.svg", + "name": "S-Story", + "md5": "dccb5c52aa6e674d7747e172f9c52cb6.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 2, - 8 + 3, + 1 ], "json": { - "objName": "Trumpet", + "objName": "S-Story", "sounds": [ { - "soundName": "C trumpet", - "soundID": -1, - "md5": "8970afcdc4e47bb54959a81fe27522bd.wav", - "sampleCount": 13118, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, "format": "" }, { - "soundName": "D trumpet", - "soundID": -1, - "md5": "0b1345b8fe2ba3076fedb4f3ae48748a.wav", - "sampleCount": 12702, - "rate": 22050, + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, "format": "" }, { - "soundName": "E trumpet", - "soundID": -1, - "md5": "494295a92314cadb220945a6711c568c.wav", - "sampleCount": 8680, + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "soundName": "F trumpet", - "soundID": -1, - "md5": "5fa3108b119ca266029b4caa340a7cd0.wav", - "sampleCount": 12766, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "G trumpet", - "soundID": -1, - "md5": "e84afda25975f14b364118591538ccf4.wav", - "sampleCount": 14640, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "A trumpet", - "soundID": -1, - "md5": "d2dd6b4372ca17411965dc92d52b2172.wav", - "sampleCount": 13911, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "soundName": "B trumpet", - "soundID": -1, - "md5": "cad2bc57729942ed9b605145fc9ea65d.wav", - "sampleCount": 14704, + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, "rate": 22050, "format": "" }, { - "soundName": "C2 trumpet", - "soundID": -1, - "md5": "df08249ed5446cc5e10b7ac62faac89b.wav", - "sampleCount": 15849, + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "trumpet-a", + "costumeName": "S-story-1", "baseLayerID": -1, - "baseLayerMD5": "3bcbd84df7924b6f97a2fa5d9bce56c8.svg", + "baseLayerMD5": "dccb5c52aa6e674d7747e172f9c52cb6.svg", "bitmapResolution": 1, - "rotationCenterX": 84, + "rotationCenterX": 16, "rotationCenterY": 25 }, { - "costumeName": "trumpet-a2", + "costumeName": "S-story-2", "baseLayerID": -1, - "baseLayerMD5": "5c0db80c63a72e8ab07d047183575378.svg", + "baseLayerMD5": "c529ed7b40f4a949539f8f454e3fe475.svg", "bitmapResolution": 1, - "rotationCenterX": 84, + "rotationCenterX": 16, "rotationCenterY": 25 + }, + { + "costumeName": "S-story-3", + "baseLayerID": -1, + "baseLayerMD5": "e96388c9197733bdadbad3ce014c0e59.svg", + "bitmapResolution": 1, + "rotationCenterX": 14, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, - "scale": 1, + "scale": 1.05, "direction": 90, "rotationStyle": "normal", "isDraggable": false, @@ -33951,118 +33377,159 @@ } }, { - "name": "Ukulele", - "md5": "39215565394d6280c6c81e7ad86c7ca0.svg", + "name": "T-Story", + "md5": "0333054ad39b919687a53924b4849be9.svg", "type": "sprite", "tags": [ - "things", - "music", + "letters", "drawing", "vector" ], "info": [ 0, - 1, - 4 + 3, + 1 ], "json": { - "objName": "Ukulele", - "variables": [ - { - "name": "counter", - "value": 5, - "isPersistent": false - } - ], + "objName": "T-Story", "sounds": [ { - "soundName": "C major ukulele", - "soundID": -1, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, + { + "soundName": "pop", + "soundID": 3, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "soundName": "F major ukulele", - "soundID": -1, - "md5": "cd0ab5d1b0120c6ed92a1654ccf81376.wav", - "sampleCount": 18235, + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "soundName": "A minor ukulele", - "soundID": -1, - "md5": "69d25af0fd065da39c71439174efc589.wav", - "sampleCount": 18267, + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, "rate": 22050, "format": "" }, { - "soundName": "G ukulele", - "soundID": -1, - "md5": "d20218f92ee606277658959005538e2d.wav", - "sampleCount": 18235, + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "ukulele", - "baseLayerID": -1, - "baseLayerMD5": "39215565394d6280c6c81e7ad86c7ca0.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 78 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Umbrella", - "md5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Umbrella", - "sounds": [ + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "umbrella", + "costumeName": "T-story-1", "baseLayerID": -1, - "baseLayerMD5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", - "rotationCenterX": 85, - "rotationCenterY": 62 + "baseLayerMD5": "0333054ad39b919687a53924b4849be9.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 27 + }, + { + "costumeName": "T-story-2", + "baseLayerID": -1, + "baseLayerMD5": "eeb0fd25c9273747ac38766d1959ba2b.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 27 + }, + { + "costumeName": "T-story-3", + "baseLayerID": -1, + "baseLayerMD5": "a9683d4946b08a76864a51bd21d811cb.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -34078,97 +33545,159 @@ } }, { - "name": "Unicorn", - "md5": "a04def38351e7fd805226345cac4fbfe.svg", + "name": "U-Story", + "md5": "57a7bbdd3cd819e62363ef0f151bcea0.svg", "type": "sprite", "tags": [ - "flying", - "fantasy", + "letters", "drawing", - "castle", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Unicorn", + "objName": "U-Story", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "unicorn", - "baseLayerID": -1, - "baseLayerMD5": "a04def38351e7fd805226345cac4fbfe.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Vest", - "md5": "f8285ca9564451c62a0e3d75b8a714e8.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Vest", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "vest-a", + "costumeName": "U-story-1", "baseLayerID": -1, - "baseLayerMD5": "f8285ca9564451c62a0e3d75b8a714e8.svg", + "baseLayerMD5": "57a7bbdd3cd819e62363ef0f151bcea0.svg", "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 62 + "rotationCenterX": 24, + "rotationCenterY": 26 }, { - "costumeName": "vest-b", + "costumeName": "U-story-2", "baseLayerID": -1, - "baseLayerMD5": "77d553eea3910ab8f5bac3d2da601061.svg", + "baseLayerMD5": "f442802f17225d6506ac9718810f179e.svg", "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 62 + "rotationCenterX": 24, + "rotationCenterY": 26 + }, + { + "costumeName": "U-story-3", + "baseLayerID": -1, + "baseLayerMD5": "0779f03a6589c60352b1d4806a4a61c0.svg", + "bitmapResolution": 1, + "rotationCenterX": 21, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -34177,111 +33706,166 @@ "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, + "isDraggable": false, "indexInLibrary": 100000, "visible": true, "spriteInfo": {} } }, { - "name": "Wanda", - "md5": "450bc8fbd5ab6bc2e83576aad58cd07c.svg", + "name": "V-Story", + "md5": "3895ca10e7ae39bc513ba285d07cba69.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Wanda", + "objName": "V-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "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": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Watermelon", - "md5": "26fecef75cf3b6e0d98bff5c06475036.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Watermelon", - "sounds": [ + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, "rate": 22050, "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "watermelon-a", + "costumeName": "V-story-1", "baseLayerID": -1, - "baseLayerMD5": "26fecef75cf3b6e0d98bff5c06475036.svg", + "baseLayerMD5": "3895ca10e7ae39bc513ba285d07cba69.svg", "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 27 + "rotationCenterX": 25, + "rotationCenterY": 25 }, { - "costumeName": "watermelon-b", + "costumeName": "V-story-2", "baseLayerID": -1, - "baseLayerMD5": "fbdaf4d1d349edd3ddf3a1c4528aa9ec.svg", + "baseLayerMD5": "03de7add77e31799ca568a9c671012b4.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 + "rotationCenterX": 25, + "rotationCenterY": 25 }, { - "costumeName": "watermelon-c", + "costumeName": "V-story-3", "baseLayerID": -1, - "baseLayerMD5": "5976c10412306fc093c1d1930fa05119.svg", + "baseLayerMD5": "29befe20b105b69471f5507d025ec3e0.svg", "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 15 + "rotationCenterX": 22, + "rotationCenterY": 23 } ], "currentCostumeIndex": 0, @@ -34297,41 +33881,159 @@ } }, { - "name": "Witch", - "md5": "c991196a708294535a1dbdce7189c23c.svg", + "name": "W-Story", + "md5": "e691a91fd45b0c302f3d954515ed164a.svg", "type": "sprite", "tags": [ - "flying", - "people", - "fantasy", - "castle", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Witch", + "objName": "W-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "witch", + "costumeName": "W-story-1", "baseLayerID": -1, - "baseLayerMD5": "c991196a708294535a1dbdce7189c23c.svg", - "rotationCenterX": 74, - "rotationCenterY": 59 + "baseLayerMD5": "e691a91fd45b0c302f3d954515ed164a.svg", + "bitmapResolution": 1, + "rotationCenterX": 37, + "rotationCenterY": 25 + }, + { + "costumeName": "W-story-2", + "baseLayerID": -1, + "baseLayerMD5": "c0f48eb69cae4a611d3e7b7e06b0d1c1.svg", + "bitmapResolution": 1, + "rotationCenterX": 37, + "rotationCenterY": 25 + }, + { + "costumeName": "W-story-3", + "baseLayerID": -1, + "baseLayerMD5": "d1c922c9e9d53d2f6f36ca637e85de6b.svg", + "bitmapResolution": 1, + "rotationCenterX": 34, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -34347,90 +34049,159 @@ } }, { - "name": "Wizard", - "md5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", + "name": "X-Story", + "md5": "2370b2a2fd153d18d1ad0ef64565b620.svg", "type": "sprite", "tags": [ - "people", - "fantasy", - "castle", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Wizard", + "objName": "X-Story", "sounds": [ { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, "rate": 11025, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "wizard", - "baseLayerID": -1, - "baseLayerMD5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", - "rotationCenterX": 76, - "rotationCenterY": 86 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Wizard1", - "md5": "e085c97691d16f0cc8a595ce1137e26c.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Wizard1", - "sounds": [ + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "wizard1", + "costumeName": "X-story-1", "baseLayerID": -1, - "baseLayerMD5": "e085c97691d16f0cc8a595ce1137e26c.svg", + "baseLayerMD5": "2370b2a2fd153d18d1ad0ef64565b620.svg", "bitmapResolution": 1, - "rotationCenterX": 134, - "rotationCenterY": 153 + "rotationCenterX": 22, + "rotationCenterY": 26 + }, + { + "costumeName": "X-story-2", + "baseLayerID": -1, + "baseLayerMD5": "f688425da41c2b7f80d4b8752de69bc9.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 26 + }, + { + "costumeName": "X-story-3", + "baseLayerID": -1, + "baseLayerMD5": "ec90479a0ce3c7706f1916daef0f3c67.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -34446,41 +34217,159 @@ } }, { - "name": "Wizard2", - "md5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", + "name": "Y-Story", + "md5": "850386477f82d80fb0e79e5c675dd906.svg", "type": "sprite", "tags": [ - "people", - "fantasy", - "castle", + "letters", "drawing", "vector" ], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Wizard2", + "objName": "Y-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "wizard2", + "costumeName": "Y-story-1", "baseLayerID": -1, - "baseLayerMD5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", + "baseLayerMD5": "850386477f82d80fb0e79e5c675dd906.svg", "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 93 + "rotationCenterX": 22, + "rotationCenterY": 27 + }, + { + "costumeName": "Y-story-2", + "baseLayerID": -1, + "baseLayerMD5": "1cfa161ae5d60ea163e4e0aa34d08f02.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 27 + }, + { + "costumeName": "Y-story-3", + "baseLayerID": -1, + "baseLayerMD5": "a1fc3c0fa304255364c0f98547e0e448.svg", + "bitmapResolution": 1, + "rotationCenterX": 20, + "rotationCenterY": 24 } ], "currentCostumeIndex": 0, @@ -34496,51 +34385,162 @@ } }, { - "name": "Zara", - "md5": "ad7b145d46e933125bd9c928d784fcdc.png", + "name": "Z-Story", + "md5": "9a0a64558a53fde1af44dad5fb021199.svg", "type": "sprite", "tags": [ - "people", - "city", + "letters", "drawing", - "bitmap" + "vector" ], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Zara", + "objName": "Z-Story", "sounds": [ + { + "soundName": "boing", + "soundID": 0, + "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", + "sampleCount": 6804, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "chomp", + "soundID": 1, + "md5": "0b1e3033140d094563248e61de4039e5.wav", + "sampleCount": 2912, + "rate": 11025, + "format": "" + }, + { + "soundName": "gong", + "soundID": 2, + "md5": "6af567714db37721a11c55d2a2648aec.wav", + "sampleCount": 46848, + "rate": 11025, + "format": "" + }, { "soundName": "pop", - "soundID": -1, + "soundID": 3, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" + }, + { + "soundName": "space ripple", + "soundID": 4, + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" + }, + { + "soundName": "beeps", + "soundID": 5, + "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "sampleCount": 9536, + "rate": 11025, + "format": "" + }, + { + "soundName": "woof", + "soundID": 6, + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, + "rate": 22050, + "format": "" + }, + { + "soundName": "squawk", + "soundID": 7, + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, + "rate": 22050, + "format": "" + }, + { + "soundName": "cheer", + "soundID": 8, + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "soundName": "wub", + "soundID": 9, + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, + "rate": 22050, + "format": "" + }, + { + "soundName": "hey", + "soundID": 10, + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, + "rate": 22050, + "format": "adpcm" + }, + { + "soundName": "C major ukulele", + "soundID": 11, + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "soundName": "dance loop", + "soundID": 12, + "md5": "e936679bac519b1df3ddea3f5db7594f.wav", + "sampleCount": 92800, + "rate": 22050, + "format": "" + }, + { + "soundName": "funky loop", + "soundID": 13, + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" } ], "costumes": [ { - "costumeName": "zara-a", + "costumeName": "Z-story-1", "baseLayerID": -1, - "baseLayerMD5": "ad7b145d46e933125bd9c928d784fcdc.png", - "bitmapResolution": 2, - "rotationCenterX": 50, - "rotationCenterY": 170 + "baseLayerMD5": "9a0a64558a53fde1af44dad5fb021199.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 26 }, { - "costumeName": "zara-b", + "costumeName": "Z-story-2", "baseLayerID": -1, - "baseLayerMD5": "6fba793b512069a67096a82aa85a5c12.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 168 + "baseLayerMD5": "e10b203e47bbb41edab78be59e628449.svg", + "bitmapResolution": 1, + "rotationCenterX": 19, + "rotationCenterY": 26 + }, + { + "costumeName": "Z-story-3", + "baseLayerID": -1, + "baseLayerMD5": "0788df7b1d9cf02dfdebc021d4f30ce4.svg", + "bitmapResolution": 1, + "rotationCenterX": 17, + "rotationCenterY": 23 } ], - "currentCostumeIndex": 1, + "currentCostumeIndex": 0, "scratchX": 0, "scratchY": 0, "scale": 1, diff --git a/src/lib/monitor-adapter.js b/src/lib/monitor-adapter.js new file mode 100644 index 0000000000000000000000000000000000000000..dc66fd0b88c8273624ef0a07b30767add579ef51 --- /dev/null +++ b/src/lib/monitor-adapter.js @@ -0,0 +1,26 @@ +/** + * Convert monitors from VM format to what the GUI needs to render. + * - Convert opcode to a label and a category + * - Add missing XY position data if needed + */ +const OpcodeLabels = require('./opcode-labels.js'); + +const PADDING = 5; +const MONITOR_HEIGHT = 23; + +const isUndefined = a => typeof a === 'undefined'; + +module.exports = function ({id, index, opcode, params, value, x, y}) { + let {label, category, labelFn} = OpcodeLabels(opcode); + + // Use labelFn if provided for dynamic labelling (e.g. variables) + if (!isUndefined(labelFn)) label = labelFn(params); + + // Simple layout if x or y are undefined + // @todo scratch2 has a more complex layout behavior we may want to adopt + // @todo e.g. this does not work well when monitors have already been moved + if (isUndefined(x)) x = PADDING; + if (isUndefined(y)) y = PADDING + (index * (PADDING + MONITOR_HEIGHT)); + + return {id, label, category, value, x, y}; +}; diff --git a/src/lib/opcode-labels.js b/src/lib/opcode-labels.js new file mode 100644 index 0000000000000000000000000000000000000000..bebe14743630de643343e9b88318b88fdf312b07 --- /dev/null +++ b/src/lib/opcode-labels.js @@ -0,0 +1,75 @@ +const opcodeMap = { + // Motion + motion_direction: { + category: 'motion', + label: 'direction' + }, + motion_xposition: { + category: 'motion', + label: 'x position' + }, + motion_yposition: { + category: 'motion', + label: 'y position' + }, + + // Looks + looks_size: { + category: 'looks', + label: 'size' + }, + looks_costumeorder: { + category: 'looks', + label: 'costume #' + }, + looks_backdroporder: { + category: 'looks', + label: 'backdrop #' + }, + looks_backdropname: { + category: 'looks', + label: 'backdrop name' + }, + + // Data + data_variable: { + category: 'data', + labelFn: params => params.VARIABLE + }, + + // Sound + sound_volume: { + category: 'sound', + label: 'volume' + }, + sound_tempo: { + category: 'sound', + label: 'tempo' + }, + + // Sensing + sensing_loudness: { + category: 'sensing', + label: 'loudness' + }, + sensing_of: { + category: 'sensing', + labelFn: params => `${params.PROPERTY} of ${params.OBJECT}` + }, + sensing_current: { + category: 'sensing', + labelFn: params => params.CURRENTMENU.toLowerCase() + }, + sensing_timer: { + category: 'sensing', + label: 'timer' + } +}; + +module.exports = function (opcode) { + if (opcode in opcodeMap) return opcodeMap[opcode]; + return { + category: 'data', + label: opcode + }; +}; diff --git a/src/reducers/monitors.js b/src/reducers/monitors.js index e8b4fa947eee4862f24be5ea8727caef6793fe5c..e21e67a0193a5a1d40a9690a877d05cd75ca0aa4 100644 --- a/src/reducers/monitors.js +++ b/src/reducers/monitors.js @@ -1,12 +1,13 @@ const UPDATE_MONITORS = 'scratch-gui/monitors/UPDATE_MONITORS'; +const {OrderedMap} = require('immutable'); -const initialState = []; +const initialState = OrderedMap(); const reducer = function (state, action) { if (typeof state === 'undefined') state = initialState; switch (action.type) { case UPDATE_MONITORS: - return [...action.monitors]; + return action.monitors; default: return state; }