├── src ├── fixes │ └── empty.js ├── styles │ ├── style-inline.scss │ ├── style.scss │ ├── style-admin.scss │ └── style-tools.scss ├── ts │ ├── components │ │ ├── tools │ │ │ ├── tools.pug │ │ │ └── shared │ │ │ │ ├── tools-range │ │ │ │ └── tools-range.scss │ │ │ │ └── tools-xy │ │ │ │ └── tools-xy.scss │ │ ├── admin │ │ │ ├── shared │ │ │ │ ├── admin-chat-log │ │ │ │ │ └── admin-chat-log.scss │ │ │ │ ├── origin-info-remote │ │ │ │ │ └── origin-info-remote.pug │ │ │ │ ├── auth-info │ │ │ │ │ └── auth-info.scss │ │ │ │ ├── pony-info │ │ │ │ │ └── pony-info.scss │ │ │ │ ├── auth-info-remote │ │ │ │ │ └── auth-info-remote.pug │ │ │ │ ├── pony-info-remote │ │ │ │ │ └── pony-info-remote.pug │ │ │ │ ├── auth-list-remote │ │ │ │ │ └── auth-list-remote.scss │ │ │ │ ├── auth-list │ │ │ │ │ └── auth-list.scss │ │ │ │ └── events-table │ │ │ │ │ └── events-table.scss │ │ │ ├── admin-sign-in │ │ │ │ └── admin-sign-in.pug │ │ │ └── admin-ponies │ │ │ │ └── admin-ponies.scss │ │ └── shared │ │ │ ├── notification │ │ │ ├── notification-item.scss │ │ │ └── notification-list.scss │ │ │ ├── set-selection │ │ │ └── set-selection.scss │ │ │ ├── virtual-list │ │ │ └── virtual-list.scss │ │ │ ├── install-button │ │ │ └── install-button.scss │ │ │ ├── kbd-key │ │ │ └── kbd-key.pug │ │ │ ├── portrait-box │ │ │ └── portrait-box.pug │ │ │ ├── swap-box │ │ │ └── swap-box.scss │ │ │ └── custom-checkbox │ │ │ └── custom-checkbox.scss │ ├── tools │ │ └── trigger.txt │ ├── tests │ │ └── server │ │ │ └── services │ │ │ └── friends.spec.ts │ └── server │ │ └── api │ │ └── internal-common.ts ├── scripts │ └── .gitignore └── tests │ ├── font │ ├── tiny.png │ ├── ascii.png │ ├── chinese.png │ ├── emoji.png │ ├── greek.png │ ├── hiragana.png │ ├── kanji.png │ ├── katakana.png │ ├── newlines.png │ ├── romaji.png │ ├── russian.png │ ├── shapes.png │ ├── special.png │ ├── variants.png │ └── punctuation.png │ ├── pony │ ├── all.png │ ├── base.png │ ├── lie.png │ ├── none.png │ ├── sit.png │ ├── blinking.png │ ├── blush.png │ ├── cape.png │ ├── cm-flip.png │ ├── deer.png │ ├── dragon.png │ ├── extra.png │ ├── eyes-0.png │ ├── glasses.png │ ├── griffon.png │ ├── hat-bald.png │ ├── holding.png │ ├── laughing.png │ ├── mustache.png │ ├── no-body.png │ ├── offline.png │ ├── paws.png │ ├── selected.png │ ├── sit-paws.png │ ├── sit-wing.png │ ├── trot.png │ ├── blinking-skip.png │ ├── face-extra.png │ ├── freckles-flip.png │ ├── griffon-socks.png │ ├── hat-horns.png │ ├── paws-socks.png │ ├── sit-fetlocks.png │ ├── sit-socks-cm.png │ ├── sit-socks.png │ ├── sit-sword.png │ ├── wing-open.png │ ├── blinking-angry.png │ ├── griffon-lantern.png │ ├── holding-letter.png │ ├── sit-neck-accessory.png │ ├── hair-in-front-of-wing.png │ ├── face-extra-holding-letter.png │ ├── hair-behind-neck-accessory.png │ └── sitting-with-skirt-and-socks.png │ └── graphics │ ├── admin.png │ ├── hello.png │ ├── mod.png │ ├── name.png │ ├── party.png │ ├── sup1.png │ ├── sup2.png │ ├── sup3.png │ ├── bounds.png │ ├── break-chat.png │ ├── fade-in-0.png │ ├── fade-in-1.png │ ├── fade-in-2.png │ ├── fade-out-0.png │ ├── fade-out-1.png │ ├── fade-out-2.png │ ├── name-apple.png │ ├── name-dev.png │ ├── name-mod.png │ ├── name-party.png │ ├── name-sup1.png │ ├── name-sup2.png │ ├── name-sup3.png │ ├── newline.png │ ├── outline.png │ ├── outside.png │ ├── system.png │ ├── thinking.png │ ├── announcement.png │ ├── bounds-none.png │ ├── break-think.png │ ├── hello-apple.png │ ├── move-left-chat.png │ ├── move-left-think.png │ ├── move-right-chat.png │ ├── outside-chat.png │ ├── outside-think.png │ ├── party-thinking.png │ ├── pixel-numbers.png │ ├── move-right-think.png │ ├── party-announcement.png │ ├── move-right-nipple-chat.png │ └── move-right-nipple-think.png ├── CHANGELOG.md ├── logs └── .gitignore ├── pony-town.js ├── public ├── robots.txt └── images │ ├── logo-120.png │ ├── logo-240.png │ └── offline-pony.png ├── store └── .gitignore ├── settings └── .gitignore ├── tools ├── data │ └── .gitignore ├── output │ ├── .gitignore │ ├── images │ │ └── .gitignore │ ├── pony │ │ └── .gitignore │ └── renders │ │ └── .gitignore └── temp │ ├── cms │ └── .gitignore │ ├── font │ └── .gitignore │ ├── pony │ └── .gitignore │ └── graphics │ └── .gitignore ├── tsconfig.tools.json ├── .github └── ci-install-gulp.sh ├── assets ├── images │ ├── logo.png │ ├── avatars.jpg │ ├── logo-120.png │ ├── logo-64.png │ ├── logo-gray.png │ ├── logo-large.png │ ├── logo-pt-small.png │ └── logo-small.png └── music │ ├── ambient.mp3 │ ├── clop.mp3 │ ├── clop.webm │ ├── falling.mp3 │ ├── fivefour.mp3 │ ├── ghost.mp3 │ ├── ghost.webm │ ├── hypnosis.mp3 │ ├── island.mp3 │ ├── island.webm │ ├── largo.mp3 │ ├── largo.webm │ ├── musicbox.mp3 │ ├── orchid.mp3 │ ├── orchid.webm │ ├── pumpkin.mp3 │ ├── scherzo.mp3 │ ├── scherzo.webm │ ├── school.mp3 │ ├── school.webm │ ├── season.mp3 │ ├── season.webm │ ├── tio.mp3 │ ├── tio.webm │ ├── trees.mp3 │ ├── trees.webm │ ├── trills.mp3 │ ├── trills.webm │ ├── unrest.mp3 │ ├── unrest.webm │ ├── ambient.webm │ ├── bossanova.mp3 │ ├── bossanova.webm │ ├── building.mp3 │ ├── building.webm │ ├── cave-secrets.mp3 │ ├── falling.webm │ ├── fivefour.webm │ ├── happy-house.mp3 │ ├── happy-house.webm │ ├── hypnosis.webm │ ├── musicbox.webm │ ├── pumpkin.webm │ ├── reindeer.mp3 │ ├── reindeer.webm │ ├── sunny-island.mp3 │ ├── sweet-home.mp3 │ ├── sweet-home.webm │ ├── trees-winter.mp3 │ ├── waltzalt.mp3 │ ├── waltzalt.webm │ ├── xmas-air.mp3 │ ├── xmas-air.webm │ ├── xmas-horns.mp3 │ ├── xmas-horns.webm │ ├── cave-crystals.mp3 │ ├── cave-crystals.webm │ ├── cave-secrets.webm │ ├── reindeer-winter.mp3 │ ├── reindeer-winter.webm │ ├── sunny-island.webm │ ├── trees-winter.webm │ ├── xmas-presents.mp3 │ └── xmas-presents.webm ├── favicons ├── favicon.ico ├── favicon-16x16.png ├── favicon-194x194.png ├── favicon-32x32.png ├── mstile-150x150.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-152x152.png └── apple-touch-icon-precomposed.png └── assets-source ├── fonts ├── cjk.psd ├── emoji.psd ├── main.psd ├── mono.psd └── tiny.psd ├── icons ├── arrow_up.png ├── arrow_down.png ├── arrow_left.png ├── arrow_right.png └── magic_icon.png ├── lights ├── light1.png ├── light16.png ├── light24.png ├── light32.png ├── light6.png ├── light_crystals_1.png ├── light_crystals_10.png ├── light_crystals_2.png ├── light_crystals_3.png ├── light_crystals_4.png ├── light_crystals_5.png ├── light_crystals_6.png ├── light_crystals_7.png ├── light_crystals_8.png ├── light_crystals_9.png ├── light_crystal_lantern.png ├── light_crystals_held.png └── light_crystals_cart_pile.png ├── objects ├── bench │ ├── 1.png │ ├── 1.psd │ ├── back.png │ ├── back.psd │ ├── backh.png │ ├── backh2.png │ ├── seat.png │ ├── seat.psd │ ├── seath.png │ ├── backh.psd │ ├── backh2.psd │ └── seath.psd ├── boat.psd ├── broom.psd ├── candy.psd ├── cloud.psd ├── egg │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── 7.psd │ ├── 8.psd │ ├── 9.psd │ ├── 10.psd │ ├── 11.psd │ ├── 12.psd │ ├── 13.psd │ ├── 14.psd │ ├── 15.psd │ ├── 16.psd │ ├── 17.psd │ ├── 18.psd │ ├── 19.psd │ ├── 20.psd │ ├── 21.psd │ ├── 22.psd │ ├── 23.psd │ ├── palette_1_1.psd │ ├── palette_2_1.psd │ ├── palette_3_3.psd │ ├── palette_4_3.psd │ ├── palette_5_6.psd │ ├── palette_6_7.psd │ ├── palette_7_8.psd │ └── palette_8_5.psd ├── holly.psd ├── house.psd ├── mango.psd ├── pear.psd ├── rake.psd ├── rose.psd ├── saw.psd ├── tile.psd ├── web.psd ├── apple │ ├── 1.psd │ ├── 2.psd │ └── palette_1_1.psd ├── banana.psd ├── barrel.psd ├── basket_bin.psd ├── boat_front.psd ├── boat_rope.psd ├── boat_sail.psd ├── bookshelf.psd ├── box │ ├── _base.psd │ ├── _gifts.psd │ ├── empty.psd │ ├── fruits.psd │ ├── gifts.psd │ ├── _lanterns.psd │ ├── baskets.psd │ └── lanterns.psd ├── carrot │ ├── 1.psd │ ├── 1b.psd │ ├── 2.psd │ ├── 2b.psd │ ├── 3.psd │ ├── 4.psd │ ├── hold.psd │ └── palette_1_hold.psd ├── clover │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── mouth.psd │ ├── patch3.psd │ ├── patch4.psd │ ├── patch5.psd │ ├── patch6.psd │ ├── patch7.psd │ └── pick.psd ├── cookie.psd ├── crate │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ └── palette_1_1.psd ├── crystals │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── 7.psd │ ├── 8.psd │ ├── 9.psd │ ├── 10.psd │ ├── held.psd │ └── cart_pile.psd ├── cushion │ ├── 1.psd │ ├── palette_1_1.psd │ └── palette_2_1.psd ├── fence │ ├── 1.psd │ ├── 2.psd │ └── 3.psd ├── flower │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── patch1.psd │ ├── patch2.psd │ ├── patch3.psd │ ├── patch4.psd │ ├── patch5.psd │ ├── patch6.psd │ ├── patch7.psd │ └── pick.psd ├── gift │ ├── 1.psd │ ├── 2.psd │ └── palette_1_1.psd ├── giftpile │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── pine.psd │ ├── sign.psd │ └── tree.psd ├── gifts │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── palette_1_1.psd │ ├── palette_2_1.psd │ └── palette_3_1.psd ├── grapes │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── 7.psd │ ├── one.psd │ └── palette_1_1.psd ├── grass_tile.psd ├── hammer.psd ├── leaf │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── palette_1_6.psd │ └── palette_2_6.psd ├── leaves │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ └── 5.psd ├── lemon │ ├── 1.psd │ └── palette_1_1.psd ├── letter.psd ├── mine_cart.psd ├── mistletoe.psd ├── orange │ ├── 1.psd │ └── 2.psd ├── pickaxe.psd ├── picture │ ├── 1.psd │ └── palette_1_1.psd ├── plank │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── shadow.psd │ ├── shadow2.psd │ ├── short_1.psd │ ├── short_2.psd │ ├── short_3.psd │ ├── palette_1_1.psd │ └── shadow_short.psd ├── pumpkin │ ├── on.psd │ ├── default.psd │ └── off.psd ├── rainfall.psd ├── rock │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ └── palette_1_1.psd ├── rope_rack.psd ├── route_pole.psd ├── shovel.psd ├── sign │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ └── blank.psd ├── snowpony │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── 7.psd │ ├── 8.psd │ └── 9.psd ├── spider.psd ├── table │ ├── 1.psd │ └── 2.psd ├── table_3.psd ├── tile_none.psd ├── tools_icon.psd ├── wall_map.psd ├── window │ └── 1.psd ├── candy_cane │ ├── 1.psd │ └── 2.psd ├── christmastree.psd ├── cookie_pony.psd ├── cookie_table │ ├── 1.psd │ └── 2.psd ├── crystal_lantern.psd ├── egg_basket │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ └── 4.psd ├── fence_winter │ ├── 1.psd │ ├── 2.psd │ └── 3.psd ├── leafpile │ ├── big.psd │ ├── medium.psd │ ├── small.psd │ ├── stick.psd │ ├── bigstick.psd │ ├── mediumalt.psd │ └── palette_1_stick.psd ├── mine_cart_back.psd ├── mine_cart_front.psd ├── mine_closed.psd ├── mine_entrance.psd ├── mine_rails │ ├── h.psd │ ├── ne.psd │ ├── nse.psd │ ├── nsw.psd │ ├── nw.psd │ ├── nwe.psd │ ├── se.psd │ ├── sw.psd │ ├── swe.psd │ ├── v.psd │ ├── end_left.psd │ ├── end_right.psd │ └── end_top.psd ├── sign_winter.psd ├── snowpile │ ├── big.psd │ ├── medium.psd │ ├── small.psd │ ├── tinier.psd │ └── tiny.psd ├── stalactite │ ├── 1.psd │ ├── 2.psd │ └── 3.psd ├── stone_wall │ ├── full.psd │ ├── pole1.psd │ └── vertical1.psd ├── tombstone │ ├── 1.psd │ └── 2.psd ├── toolbox │ ├── empty.psd │ └── full.psd ├── direction │ ├── down_left.psd │ ├── down_right.psd │ ├── left_right.psd │ ├── pole_3.psd │ ├── pole_4.psd │ ├── pole_5.psd │ ├── up_left.psd │ ├── up_right.psd │ ├── shadow_left.psd │ ├── shadow_right.psd │ ├── shadow_up_left.psd │ └── shadow_up_right.psd ├── jacko_lantern │ ├── off.psd │ └── on.psd ├── large_leafed_bush │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ └── 4.psd ├── mine_rail_fade_up.psd ├── wall_h_placeholder.psd ├── wall_v_placeholder.psd └── wooden_fence │ ├── pole1.psd │ ├── pole2.psd │ ├── pole3.psd │ ├── pole4.psd │ └── pole5.psd ├── pony ├── blush.psd ├── body.psd ├── ears.psd ├── eyes.psd ├── head.psd ├── horns.psd ├── irises.psd ├── manes.psd ├── muzzles.psd ├── shadows.psd ├── tails.psd ├── back-legs.psd ├── body-wings.psd ├── facial-hair.psd ├── front-legs.psd ├── animations │ ├── base.psd │ ├── boop.psd │ ├── fly-bat.psd │ ├── fly-bug.psd │ ├── lie.psd │ ├── sit.psd │ ├── trot.psd │ ├── fly-griffon.psd │ └── fly-pegasus.psd ├── back-legs-cms.psd ├── back-legs-hooves.psd ├── back-legs-sleeves.psd ├── ear-accessory.psd ├── extra-accessory.psd ├── face-accessory.psd ├── head-accessory.psd ├── neck-accessory.psd ├── back-legs-accessories.psd ├── body-back-accessory.psd ├── body-chest-accessory.psd ├── body-waist-accessory.psd ├── front-legs-hooves.psd └── front-legs-sleeves.psd ├── sprites ├── grass.png ├── nipple.png ├── firefly_light.png ├── pumpkin_light.png ├── dirt_ice_heightmap.png ├── dirt_water_heightmap.png └── jacko_lantern_light.png ├── tiles ├── grass.png ├── grass.psd ├── water.png ├── wood.png ├── cave-walls.png ├── cliffs-grass.png ├── dirt-grass.png ├── dirt-ice.png ├── dirt-snow.png ├── dirt-water-1.png ├── dirt-water-2.png ├── dirt-water-3.png ├── dirt-water-4.png ├── ice-snow.png ├── stone-tiles.png ├── stone2-tiles.png ├── wood-tiles-1.png ├── wood-tiles.png ├── dirt-grass-autumn.png ├── dirt-ice-autumn.png ├── dirt-ice-winter.png ├── dirt-stone-cave.png ├── dirt-water-1-cave.png ├── cliffs-grass-autumn.png ├── cliffs-grass-winter.png ├── dirt-water-1-autumn.png └── dirt-water-1-winter.png ├── trees ├── pine │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── palette_1_6.psd │ └── palette_2_6.psd └── tree │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── palette_1_6.psd │ ├── palette_2_6.psd │ ├── palette_3_6.psd │ └── palette_4_6.psd ├── walls ├── stone.psd └── wood.psd ├── animations ├── bat.psd ├── bunny.psd ├── cat.psd ├── firefly.psd ├── ghost1.psd ├── lantern.psd ├── magic.psd ├── magic2.psd ├── magic3.psd ├── poof.psd ├── rain-4x1.png ├── splash.psd ├── torch.psd ├── torch2.psd ├── boat_wake.psd ├── butterfly-4x1.png ├── pier_leg.psd ├── pony_wake │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ └── 6.psd ├── poof2-9x1.png ├── raindrop-4x1.png ├── splash_boop.psd ├── water_rock │ ├── 1.psd │ ├── 2.psd │ ├── 3.psd │ ├── 4.psd │ ├── 5.psd │ ├── 6.psd │ ├── 7.psd │ ├── 8.psd │ ├── 9.psd │ ├── 10.psd │ └── 11.psd ├── ghost1_hooves.psd └── water_crystal │ ├── 1.psd │ ├── 2.psd │ └── 3.psd ├── buttons ├── bubble-2.png └── bubble2-2.png ├── emotes ├── emote_cry.psd ├── emote_cry2.psd ├── emote_tears.psd ├── hold_poof.psd ├── emote_hearts.psd ├── emote_sleep1.psd ├── emote_sleep2.psd ├── emote_sneeze.psd ├── emote_sleep1_flip.psd └── emote_sleep2_flip.psd ├── sprites-palette ├── grass.png ├── nipple.png └── nipple_alt.png └── sprites-animations └── cat_light.psd /src/fixes/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | #### v0.0.1 2 | - Initial release 3 | -------------------------------------------------------------------------------- /src/styles/style-inline.scss: -------------------------------------------------------------------------------- 1 | @import "partials/base"; 2 | -------------------------------------------------------------------------------- /src/ts/components/tools/tools.pug: -------------------------------------------------------------------------------- 1 | router-outlet 2 | draggable-outlet 3 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /pony-town.js: -------------------------------------------------------------------------------- 1 | process.env.NODE_ENV = 'production'; 2 | require('./src/scripts/server/server'); 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /auth/ 3 | Disallow: /api/ 4 | Disallow: /api2/ 5 | -------------------------------------------------------------------------------- /store/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /settings/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /src/ts/components/admin/shared/admin-chat-log/admin-chat-log.scss: -------------------------------------------------------------------------------- 1 | // @import 'partials/variables'; 2 | -------------------------------------------------------------------------------- /tools/data/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /src/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /src/ts/components/admin/shared/origin-info-remote/origin-info-remote.pug: -------------------------------------------------------------------------------- 1 | origin-info([origin]="origin") 2 | -------------------------------------------------------------------------------- /src/ts/components/shared/notification/notification-item.scss: -------------------------------------------------------------------------------- 1 | .notification { 2 | padding: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /src/ts/tools/trigger.txt: -------------------------------------------------------------------------------- 1 | save this file to trigger sprite regenerations in `gulp dev --sprites` mode 2 | -------------------------------------------------------------------------------- /tools/output/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/temp/cms/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/temp/font/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/temp/pony/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/output/images/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/output/pony/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/output/renders/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /tools/temp/graphics/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /src/ts/components/admin/admin-sign-in/admin-sign-in.pug: -------------------------------------------------------------------------------- 1 | .mx-auto.mt-4(style="max-width: 400px") 2 | sign-in-box 3 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/auth-info/auth-info.scss: -------------------------------------------------------------------------------- 1 | fa-icon { 2 | font-size: 13px; 3 | margin: 0 1px; 4 | } 5 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/pony-info/pony-info.scss: -------------------------------------------------------------------------------- 1 | .badge-highlight { 2 | box-shadow: -3px 0 0 white; 3 | } 4 | -------------------------------------------------------------------------------- /src/ts/components/shared/set-selection/set-selection.scss: -------------------------------------------------------------------------------- 1 | .col-form-label.col-sm-4 { 2 | padding-top: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /src/styles/style.scss: -------------------------------------------------------------------------------- 1 | @import 'partials/variables'; 2 | @import 'partials/bootstrap'; 3 | @import 'partials/shared'; 4 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/auth-info-remote/auth-info-remote.pug: -------------------------------------------------------------------------------- 1 | auth-info([auth]="auth" [showName]="showName") 2 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/pony-info-remote/pony-info-remote.pug: -------------------------------------------------------------------------------- 1 | pony-info([pony]="pony" [highlight]="highlight") 2 | -------------------------------------------------------------------------------- /src/ts/tests/server/services/friends.spec.ts: -------------------------------------------------------------------------------- 1 | import '../../lib'; 2 | 3 | describe('FriendsService', () => { 4 | }); 5 | -------------------------------------------------------------------------------- /src/ts/components/admin/admin-ponies/admin-ponies.scss: -------------------------------------------------------------------------------- 1 | .table-loader { 2 | line-height: 33px; 3 | font-size: larger; 4 | } 5 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/auth-list-remote/auth-list-remote.scss: -------------------------------------------------------------------------------- 1 | .extended > auth-info-remote { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "files": [ 4 | "src/ts/tools/create-sprites.ts" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.github/ci-install-gulp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | mkdir "${HOME}/.npm" 3 | npm config set prefix "${HOME}/.npm" 4 | npm install -g gulp 5 | -------------------------------------------------------------------------------- /src/ts/components/shared/virtual-list/virtual-list.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | overflow-x: hidden; 4 | overflow-y: auto; 5 | } 6 | -------------------------------------------------------------------------------- /src/ts/components/shared/notification/notification-list.scss: -------------------------------------------------------------------------------- 1 | .notification-ellipsis { 2 | text-align: center; 3 | margin-right: -2px; 4 | } 5 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/auth-list/auth-list.scss: -------------------------------------------------------------------------------- 1 | .extended { 2 | display: block; 3 | 4 | auth-info, span { 5 | display: block; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/ts/components/shared/install-button/install-button.scss: -------------------------------------------------------------------------------- 1 | @import '../../../../styles/partials/variables'; 2 | 3 | :host { 4 | display: block; 5 | } 6 | -------------------------------------------------------------------------------- /src/ts/components/shared/kbd-key/kbd-key.pug: -------------------------------------------------------------------------------- 1 | kbd([title]="title || ''" [attr.aria-label]="title") 2 | span([attr.aria-hidden]="!!title") 3 | ng-content 4 | -------------------------------------------------------------------------------- /src/ts/components/shared/portrait-box/portrait-box.pug: -------------------------------------------------------------------------------- 1 | .portrait-box([ngClass]="size") 2 | canvas(#canvas) 3 | .portrait-box-cover(*ngIf="!noBorder") 4 | -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6e516c29c173e2d6ec8e3c6a49dec35ae8ec0b1b4f042d0e94c074a3ec5b6d7 3 | size 5909 4 | -------------------------------------------------------------------------------- /favicons/favicon.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a40c7124f9f1573f0420a5ae464abc1d8f7e494baaa953c5b900438cef4cf39 3 | size 2734 4 | -------------------------------------------------------------------------------- /src/styles/style-admin.scss: -------------------------------------------------------------------------------- 1 | @import 'partials/variables'; 2 | @import 'partials/bootstrap-admin'; 3 | @import 'partials/shared'; 4 | @import 'partials/admin'; 5 | -------------------------------------------------------------------------------- /src/styles/style-tools.scss: -------------------------------------------------------------------------------- 1 | @import 'partials/variables'; 2 | @import 'partials/bootstrap-admin'; 3 | @import 'partials/shared'; 4 | @import 'partials/tools'; 5 | -------------------------------------------------------------------------------- /src/tests/font/tiny.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eda4bca7ff073da39353f09bab2427fd6c8745ddee7cb34f123078ff2a686b48 3 | size 267 4 | -------------------------------------------------------------------------------- /src/tests/pony/all.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85f19d55941ae278b6e4efa8e2036d15b3bb1388493f7a45bb683de7895f67b2 3 | size 2917 4 | -------------------------------------------------------------------------------- /src/tests/pony/base.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09450bc47cdbf42f1dacc3e3d4aaf26e5902dd8bcc7e00653623638b9fd69287 3 | size 831 4 | -------------------------------------------------------------------------------- /src/tests/pony/lie.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6c6a5c7ee82b03dbdaad4ccf7a99b6a7512fa53e87e5e0b3c63f605f796890b 3 | size 1255 4 | -------------------------------------------------------------------------------- /src/tests/pony/none.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d573d4cd0c72b4cea3f94b1a93cec4732eaf19f618ced3192be97e007bd4b3ce 3 | size 458 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a895549531c5904b16280bac69d49b64c4cd057c0b526b769fd5eca18478aa65 3 | size 773 4 | -------------------------------------------------------------------------------- /src/ts/components/tools/shared/tools-range/tools-range.scss: -------------------------------------------------------------------------------- 1 | .tools-range { 2 | width: 160px; 3 | 4 | &.input-group-sm { 5 | width: 140px; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets/images/avatars.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96c814f0c2708221753ce037d48814bb2ec40c272ae30fa334716f6cef426c7f 3 | size 114645 4 | -------------------------------------------------------------------------------- /assets/images/logo-120.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e7b79f30db48b8fbc35a8bca172a2f691c2899418e2c6af5b145e166173e29e 3 | size 9312 4 | -------------------------------------------------------------------------------- /assets/images/logo-64.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:085f7f97cabd5dbb9b99338d5afb930abcd49da7b6c842a703588000effa60ab 3 | size 381 4 | -------------------------------------------------------------------------------- /assets/images/logo-gray.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d695631ed6c30acc1e6090ca7f9881b42386ffa796d592ccd11a7307b14ba017 3 | size 4077 4 | -------------------------------------------------------------------------------- /assets/music/ambient.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14713956ff0987dfdce355091cf873d692168173d54e176f110a60895f29dd85 3 | size 1944181 4 | -------------------------------------------------------------------------------- /assets/music/clop.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7337f1b122a6394d20b23e399d4b471c0c9b4ac214a68995a8d2bb92858a7001 3 | size 1034751 4 | -------------------------------------------------------------------------------- /assets/music/clop.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a9aeec98d294cdeab5772898e1909d95107cba4e2c9beb105bea656ffc6d159 3 | size 869236 4 | -------------------------------------------------------------------------------- /assets/music/falling.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f3ee5e1cf48191a674e5cacf85f8a849c7f9bd7cef6b40bcf8d1e0182e3303c 3 | size 2536847 4 | -------------------------------------------------------------------------------- /assets/music/fivefour.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3e64fe898f2a1aa0e1ca3ed4eb7fe3f0b2eb1bb04395545e1fdb16fa1f3afbf 3 | size 808224 4 | -------------------------------------------------------------------------------- /assets/music/ghost.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12dfe209b5bbac6a548277c38bdf975b0c1861c00e9d45b64191e9ea45df9b18 3 | size 2074584 4 | -------------------------------------------------------------------------------- /assets/music/ghost.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44bab0842a46ed9c6a6289023e0961939f34c82f95d57f7f192429c41209d34f 3 | size 1867640 4 | -------------------------------------------------------------------------------- /assets/music/hypnosis.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d756aea9297d90f8cb36d44b24fc524f10cf11fccde808a307190fc7a64361c 3 | size 842071 4 | -------------------------------------------------------------------------------- /assets/music/island.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73556454345173f195e53d272daa139c8ba79be28739795a48992cc93883c437 3 | size 1770728 4 | -------------------------------------------------------------------------------- /assets/music/island.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d03a4c8dd86782878a8ca24842d47f88dba972180954134a2ae094d17d768ee4 3 | size 1525189 4 | -------------------------------------------------------------------------------- /assets/music/largo.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1b8badd6cd42379d3d125e30d926a7bb7cdcf4f832d5c038ff52b5325348f7d 3 | size 1076128 4 | -------------------------------------------------------------------------------- /assets/music/largo.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1768818b0bd00318f6847b9fec12fd9aa76db2ae837dbd590a7ecc14e12774b1 3 | size 861490 4 | -------------------------------------------------------------------------------- /assets/music/musicbox.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a4aeb6e17e022faa15fed2909db009dab9426d1f3936a57e113ab4c2ffd2d76 3 | size 913960 4 | -------------------------------------------------------------------------------- /assets/music/orchid.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bd082129e4fc885f42286aca38e19a6ef7d10b2aceae3a752cc9d34fd4692b0 3 | size 1051420 4 | -------------------------------------------------------------------------------- /assets/music/orchid.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c50cb42c27ecb3214ffd0dc01a03b0bfca82c1b8e2b3c0ae0807a1a1bebaed6b 3 | size 912724 4 | -------------------------------------------------------------------------------- /assets/music/pumpkin.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f220ea16d8f220fde53d9a7dc052f9b3373eeb3bdc0e636bcc2fd43df7790fc4 3 | size 3163368 4 | -------------------------------------------------------------------------------- /assets/music/scherzo.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76392046ae72ef0a08c466a88db73c39f8a138d4cc8fd443a18796b075d2692c 3 | size 663608 4 | -------------------------------------------------------------------------------- /assets/music/scherzo.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0439ebc8e1cdc8529321e806e94e47751add27bf91a19333cea28d8b46c8ef52 3 | size 517344 4 | -------------------------------------------------------------------------------- /assets/music/school.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d6d51ab6821affeef434114145e9182e972dbf69c97a82d2ff45fdd6c6c26f2 3 | size 2421072 4 | -------------------------------------------------------------------------------- /assets/music/school.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f83ee050d53c53591e111dc8e32b42c6ccc558199bd56617adaa1182acb14d0 3 | size 2075212 4 | -------------------------------------------------------------------------------- /assets/music/season.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:936c61e0599cd91593f3771937f2315da8eeb57b2e4207bc831c6b436ef1606e 3 | size 2369663 4 | -------------------------------------------------------------------------------- /assets/music/season.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43acac4b484cd477e3105fffe39b160d9dd197b4435249c55b2788d142d26700 3 | size 1988182 4 | -------------------------------------------------------------------------------- /assets/music/tio.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7f282af07ad05975356bf08f430786dfc27a89e9e9bfca9b4a1ce61bc0d9cfa 3 | size 1958809 4 | -------------------------------------------------------------------------------- /assets/music/tio.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed502a1b0dea63c8f860dcd51a7236b9ad9ed516bd2f779e1ccef166b23f50f9 3 | size 1628227 4 | -------------------------------------------------------------------------------- /assets/music/trees.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20bb612d828ae38c97d1eca8a018016f535bbcd3d7a8678763a1076068425665 3 | size 2535593 4 | -------------------------------------------------------------------------------- /assets/music/trees.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:333133a87038d26b8eb187fd7ad90db475b7d89270ec647b120e9cf2a0e1fb89 3 | size 2228537 4 | -------------------------------------------------------------------------------- /assets/music/trills.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f47e0220a31807efb2744df22e6cc1150fcec5bd0b4eb7cbd8064100f9f1e0c 3 | size 1086528 4 | -------------------------------------------------------------------------------- /assets/music/trills.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90036609822961a50e1aeed28f222e09445fdc154f9bff66f4bb660b127419e5 3 | size 929845 4 | -------------------------------------------------------------------------------- /assets/music/unrest.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:924768073bf5c095443dda335083525e47513af964ab3b9503ba4fba63f32a8b 3 | size 1610280 4 | -------------------------------------------------------------------------------- /assets/music/unrest.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8cf1a117b725dbd863093edea7018b84095e9569332b6d3bcd1fb4cadb07c28a 3 | size 1392246 4 | -------------------------------------------------------------------------------- /favicons/favicon-16x16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:612dcd95b333ec4afd614c23d7eebe2793a5532f275aa539a119ca22744a5fe9 3 | size 443 4 | -------------------------------------------------------------------------------- /favicons/favicon-194x194.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6f394aab88010845185385b33ddfcc21011b48a4cb964fb8f49428a8f9a02e5 3 | size 687 4 | -------------------------------------------------------------------------------- /favicons/favicon-32x32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb0f65a82a7bb732c2c07d64665b746fe4736567dc37c527663479df52a56338 3 | size 457 4 | -------------------------------------------------------------------------------- /favicons/mstile-150x150.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b0972ab217fe73819226dac29c71ce4fb50ce84f4eb5c58ad02d85da2440f30 3 | size 577 4 | -------------------------------------------------------------------------------- /public/images/logo-120.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d497f3e9554f67c10b2bf21866722892132453f9b77d1e53799b2fb31274410a 3 | size 3455 4 | -------------------------------------------------------------------------------- /public/images/logo-240.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e292c0c202d8244f060e7d9a69fe473efc48f6a5966428728b09b8276cdbebc 3 | size 8200 4 | -------------------------------------------------------------------------------- /src/tests/font/ascii.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84f45ed15d67c026310e1c9814b8b15aa8a822cf061b26f9a98d54130d1018bb 3 | size 334 4 | -------------------------------------------------------------------------------- /src/tests/font/chinese.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f665d8d4b520798b140b2709d8f147fdaab85dc9229e21dea8570df4989ffcf 3 | size 411 4 | -------------------------------------------------------------------------------- /src/tests/font/emoji.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d45576705ab678903fec0962a70ae3b4cf7626f27adc330b8b9c66fb5e182f29 3 | size 591 4 | -------------------------------------------------------------------------------- /src/tests/font/greek.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c34c27e7b2fe132b329c951751aaaa21be10a4d6d688dfb19a1f952c9d71df26 3 | size 295 4 | -------------------------------------------------------------------------------- /src/tests/font/hiragana.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6e1b4209127c30c99886c311ed0262d4084265ff48771ce0188738c29e37672 3 | size 341 4 | -------------------------------------------------------------------------------- /src/tests/font/kanji.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddc634775d305d7d9bc949eab100dc41187131965a84419357f2e9cbe35168b8 3 | size 265 4 | -------------------------------------------------------------------------------- /src/tests/font/katakana.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85c2860f24c8c73478bcc12132e9c7d96049ded077dd6a50fa210dc33e2a9132 3 | size 314 4 | -------------------------------------------------------------------------------- /src/tests/font/newlines.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6720bacdad8510ce6a657f9ff965dd5d2d86ce769bfd8f864206281cdcabaad 3 | size 379 4 | -------------------------------------------------------------------------------- /src/tests/font/romaji.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19899ad5d08539ac7126902e725d23a7ca97d83e55c8717da27be984802d3696 3 | size 333 4 | -------------------------------------------------------------------------------- /src/tests/font/russian.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3494b3c9702933dc7b9852370cd4a5a947b1c9b6fd4562f9e11c21e2f8cd32a5 3 | size 295 4 | -------------------------------------------------------------------------------- /src/tests/font/shapes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b15e74aec198a9740f14865d0a423bca183974de8c5138d87c747aacf6b5b16b 3 | size 320 4 | -------------------------------------------------------------------------------- /src/tests/font/special.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4062edff8d09e5472093c8c5331149ee3c6be1c1848fdc8c03f11701b4ea0c1c 3 | size 407 4 | -------------------------------------------------------------------------------- /src/tests/font/variants.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3e4b57bcd6c5a3e4999e4d4cbbd4cc7b7b0f9b41cbbc447cafdef768d86c2b5 3 | size 323 4 | -------------------------------------------------------------------------------- /src/tests/graphics/admin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c65c77b49b6b4a133f99cfa163d9f37c71096d9db10ae198e7309aaf01f6b51c 3 | size 310 4 | -------------------------------------------------------------------------------- /src/tests/graphics/hello.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4394869e01c05ab99a930a37c7dea010afbe8e54a3504625481e4b73fb7e6b70 3 | size 293 4 | -------------------------------------------------------------------------------- /src/tests/graphics/mod.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3f522e1e1aed9ed70b4670dc81ee0b27f25b70c77f3ed9afcb003a80653e54c 3 | size 338 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e50db92b9253248b3bad45bf7cf7ea22f82f4605e25ec702c4e0697463d0dbae 3 | size 389 4 | -------------------------------------------------------------------------------- /src/tests/graphics/party.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7711c7f569f62650ea1ecd8ef8f4bc1c4a62e3d2568d3c4d300fd1dddb2c71bd 3 | size 333 4 | -------------------------------------------------------------------------------- /src/tests/graphics/sup1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:368f3b9f2b3fc87e1dffe85661f5ec1699717750f3b0ebe85cec5b6ba741e74e 3 | size 361 4 | -------------------------------------------------------------------------------- /src/tests/graphics/sup2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6eb3dcffd5353b7e5908aa73106c9a9cbfcac78df261dff64533de39b331f30d 3 | size 434 4 | -------------------------------------------------------------------------------- /src/tests/graphics/sup3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2202d795d3a2fbb468f599ffc170cd0b63d5cd9a0424a147478e775ceb529b51 3 | size 443 4 | -------------------------------------------------------------------------------- /src/tests/pony/blinking.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76be24377d5043fcde197b55406afbd8a8ee23fb00ac0e1b9ce806a459d46204 3 | size 1800 4 | -------------------------------------------------------------------------------- /src/tests/pony/blush.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:babe656ff85fbecedd7e077b3b312382934afa0bf04de389c87b3e712378821f 3 | size 858 4 | -------------------------------------------------------------------------------- /src/tests/pony/cape.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f409f24a249bcbcc77ff1414477e144ae3be6d4c3199a91294f5c0d64b2e3fc 3 | size 1344 4 | -------------------------------------------------------------------------------- /src/tests/pony/cm-flip.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9edbd0bff1370a7c32d6f9105657172d8e6797fa06bd1ccab0891f05bf8e747a 3 | size 1459 4 | -------------------------------------------------------------------------------- /src/tests/pony/deer.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5853a1cff511d67b138c1ff1a6d69d6011ca85e75ee8ded4c0719af48a6950ca 3 | size 2128 4 | -------------------------------------------------------------------------------- /src/tests/pony/dragon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae72defbd37511aa93a2ba951d1bcec0c565ced864f4b19bd261f5d7e585b6d8 3 | size 1450 4 | -------------------------------------------------------------------------------- /src/tests/pony/extra.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:183bfc5ff7a6bb23fe976eb5e8e304eed23d5b6aa3c62f225ab473ef5947b5b0 3 | size 1289 4 | -------------------------------------------------------------------------------- /src/tests/pony/eyes-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:422f3de26184fb7d78aa4f66c88433a4fb32d0307c55cee0af88207f9d33ff8e 3 | size 1070 4 | -------------------------------------------------------------------------------- /src/tests/pony/glasses.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3151e502b001829c49cc5503acf379e8695732c1563659159c601ecbe154b65e 3 | size 1307 4 | -------------------------------------------------------------------------------- /src/tests/pony/griffon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:864630503d983b33b3f8510c77aa736f6ac9a21e5ca59f280205efa3235dd585 3 | size 1672 4 | -------------------------------------------------------------------------------- /src/tests/pony/hat-bald.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba92424bcc8db2c4e76ee762ef2035e6afc3564bd71b4cd623a29b5927d07f11 3 | size 1287 4 | -------------------------------------------------------------------------------- /src/tests/pony/holding.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cde8eef7de6c100c8d8bd4d8a0dbfbe4b6d9993897d10f543994c1ad1e9670e0 3 | size 1865 4 | -------------------------------------------------------------------------------- /src/tests/pony/laughing.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a538a0ad30a289fda2f2a5ec0044c141f98217415a1e2c359ff539d66e3d17d 3 | size 1783 4 | -------------------------------------------------------------------------------- /src/tests/pony/mustache.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e73f8359c3c83343378f85cb472df2f06b2c0e157253a61f68727668f4605bcf 3 | size 932 4 | -------------------------------------------------------------------------------- /src/tests/pony/no-body.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f56619a55df7c4fbc392c000c4d9460f0a09689f1fcef8dc4773be47c2280a4f 3 | size 588 4 | -------------------------------------------------------------------------------- /src/tests/pony/offline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:608c823aff37b7f5f272fc730c3989d28743a4de7637d3ebbb4419185e8b00dc 3 | size 1136 4 | -------------------------------------------------------------------------------- /src/tests/pony/paws.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce729b92f9305ea3ddb7ef39a8b042f1b75be8b7bd83f8e10a40e9e2cc869024 3 | size 1385 4 | -------------------------------------------------------------------------------- /src/tests/pony/selected.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e6fb86347d2391a9b116f88f6e29340ae8d754f30c39491890072e7f5d8a4e3 3 | size 875 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-paws.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98bdc74d42bb03a95f0292c2d0332fb6c862cfe9cb9ea05902d3cd139c51227a 3 | size 1525 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-wing.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e5c2263673a50aa826a75dfd64a5d88187ca880fc9b710700e0b4e2c12efe75 3 | size 800 4 | -------------------------------------------------------------------------------- /src/tests/pony/trot.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fbe2bcbdf6d9a381d20a38c55a8de353c8371459ec4069696ea950dc7fff296 3 | size 1940 4 | -------------------------------------------------------------------------------- /assets-source/fonts/cjk.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b93aa3370bf45155bffdb1aa8aed3bc089b32abbdbb3f3e303185e9733ce17e 3 | size 2832213 4 | -------------------------------------------------------------------------------- /assets-source/fonts/emoji.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eeee55925c4a0aa9d01102ab108ae404a9998b392193addfb5ed5643338f05da 3 | size 125370 4 | -------------------------------------------------------------------------------- /assets-source/fonts/main.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db12482f0b5d2b31c080352c06e7335bce8a908123bd696a153baa591d870a73 3 | size 1847600 4 | -------------------------------------------------------------------------------- /assets-source/fonts/mono.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:849010a6773b091127fa1b8e1a948ee0e869727890a37e0bf71ffb7b9981ad95 3 | size 98116 4 | -------------------------------------------------------------------------------- /assets-source/fonts/tiny.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ded9fba36c1a8fcb468efb7c1329b563becb80dab8ac54974dce05277504073a 3 | size 115656 4 | -------------------------------------------------------------------------------- /assets-source/icons/arrow_up.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e14762faec33fbcf6d4383bf1f9502f50d3d9a99d766ba5071d3664cd618ee4a 3 | size 946 4 | -------------------------------------------------------------------------------- /assets-source/lights/light1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba48c1a139fe510b6949e58dcdefbd2c632bb15d118cc88f9b9b78f6cfd4a7d5 3 | size 3268 4 | -------------------------------------------------------------------------------- /assets-source/lights/light16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cd0b31fcbdefea7b4c14a6502f99e87a0bf0a2b9c2742a029783cb6426ab886 3 | size 973 4 | -------------------------------------------------------------------------------- /assets-source/lights/light24.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4689e216becffb34522dc549476601b7fcbdf004f0cb5a5447072f11996a873a 3 | size 1003 4 | -------------------------------------------------------------------------------- /assets-source/lights/light32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b647b402e7fcc4af16c9951c3d65f1ade184175ac4e3ec31f7c0c10f09302d3e 3 | size 1025 4 | -------------------------------------------------------------------------------- /assets-source/lights/light6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12f81b8c6ed93901f0c4f479e85e24b5509449649c65a3a31c7d6ae25fc65e67 3 | size 885 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:342ab09a8304a610bbcbe80a1cec0e75d3e04ad9ba9c5e10a90e84f6f34fe521 3 | size 635 4 | -------------------------------------------------------------------------------- /assets-source/objects/boat.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c391b615a9d7e416c88ac00677e957a36243a3616ea83bb92af804426cfc7d5 3 | size 55266 4 | -------------------------------------------------------------------------------- /assets-source/objects/broom.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9ba260baf06c21a3740213896bc2bbf9afe6cf4ed8318e1dd2b47effe3af5c4 3 | size 23192 4 | -------------------------------------------------------------------------------- /assets-source/objects/candy.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ecc80a1437192613a69639e8c4c510e277cd93f5c8eb06cb09ae3859803be4a 3 | size 22902 4 | -------------------------------------------------------------------------------- /assets-source/objects/cloud.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:611a3d67b27bfdbc1fb0a15a55fe140f239bfc908defad1855f670862a4f0362 3 | size 30064 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a93f1325b69dbdcc614b9fe34fbe39180ede8097d507b61552639361f27636a 3 | size 22502 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d5f3a68094aab6f2857146393e51959bb1150ab0204da22623d04f28f13fbef 3 | size 22984 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a192962682c649d00869dc9c5fd90d4e63c430e49b7a4721e08c447b575ed94 3 | size 22970 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36a6cd1b663b11fdb8613af9f1fe2ddee8753a584da8cc3bef7abf6ec3cd8fcf 3 | size 22952 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ea29c69ed31c1b1f77e29e44d4f86990aa710d9aecee647d0b8d57d922dbd0f 3 | size 22940 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6b5224284e65c2e22e207e9b70867faf99681f8a10130e33fae0bbba82ea40c 3 | size 22964 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9efcc4337f94d906daf7d865e5bc1b888db95cd1328334c4ca04fa31ef4cd962 3 | size 22944 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/8.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81e04e3925d08635c632528ed3198cfe7b24e44925201c134c5bb37d176dfe36 3 | size 22952 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/9.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2acea5bedc18bcc799883b232ba1bdeefdf73cb18d561b8eed373c645a108bb 3 | size 22940 4 | -------------------------------------------------------------------------------- /assets-source/objects/holly.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c9c6462a73397a52c06c8f69c4604e580fcec13cfa7c24ad42d74dc2db7941d 3 | size 21520 4 | -------------------------------------------------------------------------------- /assets-source/objects/house.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c61eac2640a468f88c41fd78c5411b97ba448d16b8d144677081cb45d5703ce8 3 | size 85944 4 | -------------------------------------------------------------------------------- /assets-source/objects/mango.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:015de74032fd7dc9bdb81b2f720fbac89c100777e3801bd3ec34f0fb9ec8948e 3 | size 22180 4 | -------------------------------------------------------------------------------- /assets-source/objects/pear.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:190c9eacd0e85f4d1e1d7d9fbb165741919ae6fc65a93e74e769b73d4b2254fa 3 | size 24907 4 | -------------------------------------------------------------------------------- /assets-source/objects/rake.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e175285e7ac0a3a5d0a2e299add600ebf70bee3437ee97f53d3346dc90421b3 3 | size 22667 4 | -------------------------------------------------------------------------------- /assets-source/objects/rose.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0c9c761c3a828785ae93f413fe8f1a0203afd4358125fb562aa71e4e389629c 3 | size 23388 4 | -------------------------------------------------------------------------------- /assets-source/objects/saw.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df3ccca9a2ef2797c84231bd1d7d1f4c36571df93e9eaaa31c4435aa4be180cd 3 | size 22099 4 | -------------------------------------------------------------------------------- /assets-source/objects/tile.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e673db9a99fb15b4ed41360911b652aa373f704d697d63f1d244fc0425552fa 3 | size 25130 4 | -------------------------------------------------------------------------------- /assets-source/objects/web.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65d3b7f23d414f288aa073b64afdad7a75858bfdbbfab9e7e8dedf82ae68b67c 3 | size 26760 4 | -------------------------------------------------------------------------------- /assets-source/pony/blush.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a28ebc85dc9a4bc134d87e3fafcff1c2fb1cb4d0323fb5507a2faca61a1f0cdf 3 | size 30287 4 | -------------------------------------------------------------------------------- /assets-source/pony/body.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94d92baa3c4e44e153b3fc93b4f2e4f944ba5e87743f96ff406366c0ddb05224 3 | size 125971 4 | -------------------------------------------------------------------------------- /assets-source/pony/ears.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea48d24f0e2ece488ff70dd1964d222aca73520e09bbcffd969461dd5579d3b1 3 | size 146844 4 | -------------------------------------------------------------------------------- /assets-source/pony/eyes.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bed3e8cd2a499b90dada8ca966d2b6ae41c2da9eb59895ff8df6b1277507f51c 3 | size 100394 4 | -------------------------------------------------------------------------------- /assets-source/pony/head.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d5e1f95703febafca23170cd5b36fd95ea91401d009c7eb06a4cb374899cca5 3 | size 90431 4 | -------------------------------------------------------------------------------- /assets-source/pony/horns.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88ffd6d2a55a661b8caf816eef4879a02af873a2a0eb058aa6749cbed991340f 3 | size 236185 4 | -------------------------------------------------------------------------------- /assets-source/pony/irises.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50309584405af462cdbbca16cf018f807a9224de3035593b925b9b7a8a8283a4 3 | size 35274 4 | -------------------------------------------------------------------------------- /assets-source/pony/manes.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e48f00a59f16c0f24ea8582689246ab9a87d3609f0f30e2a0598377b349f4ff8 3 | size 890685 4 | -------------------------------------------------------------------------------- /assets-source/pony/muzzles.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a97290b3ead81cb4730982870f34f50833aa383b11ba6a7e071612d91ea0f2c 3 | size 158312 4 | -------------------------------------------------------------------------------- /assets-source/pony/shadows.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bb234d447966743f8d4157b2610a84f55c90095fd311ddd0aeabc6315176463 3 | size 28335 4 | -------------------------------------------------------------------------------- /assets-source/pony/tails.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f21d494e28be8991f771fa8f9b98f59bc900f222857d6de24ba24884d476cf2 3 | size 1196810 4 | -------------------------------------------------------------------------------- /assets-source/sprites/grass.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94481ef11c675073e6043a8aa37a55650763254912ae91b83b3baee4cf743374 3 | size 1208 4 | -------------------------------------------------------------------------------- /assets-source/sprites/nipple.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:846de8773474c1c5741f99c5aa2cf36b474c9078a965ad9c54525bb1e6475f03 3 | size 2808 4 | -------------------------------------------------------------------------------- /assets-source/tiles/grass.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cb5c9d3ce77b8f9c87c0cb0b87d4604bfa9080c28f147ab1354966e15209b54 3 | size 17022 4 | -------------------------------------------------------------------------------- /assets-source/tiles/grass.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7caf7d3f4f923cd531864bb2489bed27079c32e004f5f1f1a9189753a7b8ae9 3 | size 220504 4 | -------------------------------------------------------------------------------- /assets-source/tiles/water.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:910d743722bfdbdd695e69c0125dd877bddcd3536a9d9aa228825710c6157dac 3 | size 949 4 | -------------------------------------------------------------------------------- /assets-source/tiles/wood.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3403cc412725adb03a9d3dae42ec3f0d1362f6d44709dcb3fc6cd27814b65f5 3 | size 1193 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5d880d757b8a8a91617330452ec390187eb5106341c02abc1fee06f9d118a45 3 | size 26448 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e397b250cd6abd9ed5a1c9eab6b1a64f8d4a92975c26c6e53dae3548d091e9ec 3 | size 24456 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7703ccf7f23200ee34913595cdf44178cc9880890f2c3552fac7b337863daa67 3 | size 38266 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cc14f7849568ddf63cfc1b4b97e4cd34187873af428666c622db8738e772562 3 | size 54612 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c76843f575e460b4107e1f4fe14a42098cfa5fe7c91e0b7a08deb63c7d041069 3 | size 67035 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fca3ee1f79a52f6b6c3b9cc7e8da5b5f4ec546fde78575ded55a54b192a84f31 3 | size 84832 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8f3090dab2205063b31017f27eedb02ccecd55e163c0077c47290da74033551 3 | size 20954 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e3ad4b17af6259baeb7822c310b59fb1f0183adab364cfea2288e999835a221 3 | size 24046 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fb696240d5c85801181846bd89a42e6cb6880b66485db82b6bca8d239610085 3 | size 27992 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdef9e2b5e3cc26bcea33ef55c8883a11598c30663673f83da30cd7bbc8f6079 3 | size 39511 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41ad1d4d9bcd6cd2a92eaa15836094822947406b894c0c4447c3a878baa4728f 3 | size 49728 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cfddd09036786aa66b04c3371b670e1731b591ad7d6711accad946537e41f49 3 | size 127168 4 | -------------------------------------------------------------------------------- /assets-source/walls/stone.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d085e3c69d7471d31e9337707a9045c3e63588fd21488dba9474c63c37d346f 3 | size 104312 4 | -------------------------------------------------------------------------------- /assets-source/walls/wood.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c3f24a96353b6aad7e18cab633ad35f8b94f7509b63dbe5e3d02b3ea2c159da 3 | size 159587 4 | -------------------------------------------------------------------------------- /assets/images/logo-large.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81dac5b333ab470bbc561730839122ab8e57459ed7323e836ac22c70ef5c41ee 3 | size 6477 4 | -------------------------------------------------------------------------------- /assets/images/logo-pt-small.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38d1a38b3692eeaf1eefe0a99ae61c474ba0a228c40e468cdf43c4806b04130d 3 | size 319 4 | -------------------------------------------------------------------------------- /assets/images/logo-small.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a6dc4366c24ddbb680bf3feceb34665fec6584f078ef07b285fb7e8df2634b2 3 | size 4021 4 | -------------------------------------------------------------------------------- /assets/music/ambient.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c5e2150a3c6233d30915fa0e067e3b0aec94243a33e3d7cd2624a489df7c004 3 | size 1670266 4 | -------------------------------------------------------------------------------- /assets/music/bossanova.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac3ebfb5ce92e399ddc6a5b4502b9b13e6dc28ff7a8ba17ff42c789dd9e82eee 3 | size 1495347 4 | -------------------------------------------------------------------------------- /assets/music/bossanova.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:382fece55d93a534acc0a4f0be2174025f5619603545b8068cfe1c918355fc69 3 | size 1326880 4 | -------------------------------------------------------------------------------- /assets/music/building.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69a487757b023dbd9710119208d0e1026ca7889dbb19d91b2b3494ed2fccc02f 3 | size 3147903 4 | -------------------------------------------------------------------------------- /assets/music/building.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb457182791bc1d7b786edf2fc85e6b937f630e93fe4dd8b237f06c22b08064f 3 | size 2542388 4 | -------------------------------------------------------------------------------- /assets/music/cave-secrets.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42dd600cb06ece8fd55f833cd0f2ab3b3d9637e427f1cbbaae9ad215ef89e27a 3 | size 1866440 4 | -------------------------------------------------------------------------------- /assets/music/falling.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f2a84ab9b59dbffd525800f78ae3d65dea0c3a6ec85a16dca11925bbf684f33 3 | size 2222228 4 | -------------------------------------------------------------------------------- /assets/music/fivefour.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9715ea2178011851b77ad8f32a8d0d8190fca50e54cbf64732d922918cfabd01 3 | size 665015 4 | -------------------------------------------------------------------------------- /assets/music/happy-house.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b054239b3ecb6619071d2103c82abceec5bbf1df76543b6e679a25bcee4f3e5e 3 | size 1947942 4 | -------------------------------------------------------------------------------- /assets/music/happy-house.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7b4ccaf0944801353d5609dd581ac52f8298cf5b4ce9b8ac8e226cfca2721ed 3 | size 1596492 4 | -------------------------------------------------------------------------------- /assets/music/hypnosis.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a766596bd787cecf324fa89c493c7e3c3991fdab75bd8bc8f7301098549261a6 3 | size 636217 4 | -------------------------------------------------------------------------------- /assets/music/musicbox.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:454981d57a4948b21982e823996b38212f3758865e89cb34b6053c89ec7cc465 3 | size 812985 4 | -------------------------------------------------------------------------------- /assets/music/pumpkin.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cc3de3688db7cc86b89fe49f0208402fdb73962414dcfba6f34e53c71b54665 3 | size 2970407 4 | -------------------------------------------------------------------------------- /assets/music/reindeer.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10844c4cd9b1acd05aa0bc76da4e51b9464dd8d4eeed09d1cbdb3fbfbc4940ef 3 | size 1345663 4 | -------------------------------------------------------------------------------- /assets/music/reindeer.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff342db70ef5aaa4cb1614f634214c6197ff0ed307e2ed62cddb715d7fd42f22 3 | size 1084788 4 | -------------------------------------------------------------------------------- /assets/music/sunny-island.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8792eb510753ab040491dff5895f363715a1414cdea23f09f5dc870a569a4eb 3 | size 3250303 4 | -------------------------------------------------------------------------------- /assets/music/sweet-home.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdce7e661f445a2414ac7cdda97ab521d866f2c2ab469a075d7437bb733dd9b5 3 | size 1897787 4 | -------------------------------------------------------------------------------- /assets/music/sweet-home.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:965d1cb48798f3e57edbbb29c1805fc2ab0c82f6f74f41acf4cfb6e3f1465e8e 3 | size 1569237 4 | -------------------------------------------------------------------------------- /assets/music/trees-winter.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ab0f493ebf399b2c7585b312276fd407b802cdc642f1df8c4ef2c39d9663d54 3 | size 2535593 4 | -------------------------------------------------------------------------------- /assets/music/waltzalt.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:024ab0ceefd191f252257e74c35c9c62793d5ace4d1998dc5b3b2d4c1031c971 3 | size 1657043 4 | -------------------------------------------------------------------------------- /assets/music/waltzalt.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc935035d8a2acefae443f2ec8e42c5ef37da502d7a2f37f5f8cf4a218cb57c3 3 | size 1305109 4 | -------------------------------------------------------------------------------- /assets/music/xmas-air.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:415ea408999d926155a9a135dfd2a9a98c2173d29e3faab0912e3f8b09899481 3 | size 1708870 4 | -------------------------------------------------------------------------------- /assets/music/xmas-air.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f716fdbbe3242ccfcb4528394cb0c56624f86a1dbf0765e85cf8e7002dd9bef 3 | size 1545206 4 | -------------------------------------------------------------------------------- /assets/music/xmas-horns.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b83a72537f5113a60c027dec32187c97586decefdece26ac4647f9b6c75a64a 3 | size 2902979 4 | -------------------------------------------------------------------------------- /assets/music/xmas-horns.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ab4a0e1fa72647ee9bf21ef374ca7910acc2ba00666bf9468519b7a2a6adf9b 3 | size 2475388 4 | -------------------------------------------------------------------------------- /favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:038f68cc5bb06629d1e13b0d0616688e27d874f5f3876908492d0bb4134bc180 3 | size 524 4 | -------------------------------------------------------------------------------- /public/images/offline-pony.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb5f48880bb32c4d450fa30eb1b567b36b6573739a4dd76396337271acf05663 3 | size 2356 4 | -------------------------------------------------------------------------------- /src/tests/font/punctuation.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4efed133c3cc38bacd90aeea937a1bfb0c3d72dfe206e3c8b7dfc793c9018a8e 3 | size 301 4 | -------------------------------------------------------------------------------- /src/tests/graphics/bounds.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcb040475e7d7db3b6b69f8c277974fcd56b93aff0ba0799e19074b77668cfe2 3 | size 178 4 | -------------------------------------------------------------------------------- /src/tests/graphics/break-chat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f32ad6b109e230f763a57bcfba60f00bc1ee542216c77b9defdfd87f6e9b7bb7 3 | size 461 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-in-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:110e1327a718bf9cb1a94fbe06368942b3a8f9deca7a372f867aa230f3cf0f61 3 | size 117 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-in-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8dbe766123f9f8f489a08e13b38b771f5479000bf37e2bdbea792ac2d681c92b 3 | size 313 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-in-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d43cf759a4087913ae7d9f2e01f554517a082b0dc25546f75ea0eea1535ff8f5 3 | size 302 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-out-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:110e1327a718bf9cb1a94fbe06368942b3a8f9deca7a372f867aa230f3cf0f61 3 | size 117 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-out-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01491fa2f474a969b3bbafa09bde98894d37bb634bd5aab18a1a07bd1ec7c6ea 3 | size 313 4 | -------------------------------------------------------------------------------- /src/tests/graphics/fade-out-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d43cf759a4087913ae7d9f2e01f554517a082b0dc25546f75ea0eea1535ff8f5 3 | size 302 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-apple.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:197e0ae5d9dc63a1f38d0d17c5ef12778c6ff7d3cf9c08dc6ed61f8439fd8458 3 | size 490 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-dev.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74285daf33e3a674beb3bac1dcac1475f0da1f549dd8df58455ecca7fdaa9cb7 3 | size 797 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-mod.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de34b53a501554c5024f05fed6b00076ee60ae32f748a13744a132856a77e6ea 3 | size 762 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-party.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1068b06e8e0bb42b21b1df33f27aaa417f9faf5404ae32e2f729a4df592064b5 3 | size 454 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-sup1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:063f4b606eab3eb0741d83d6e108e5c84d698e6face21b1b21674f1bdf26b4e2 3 | size 825 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-sup2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88ec0b63cb3775109f9d36217be1e1e02f52c07d93160b02b03abf3e78c9c5ae 3 | size 867 4 | -------------------------------------------------------------------------------- /src/tests/graphics/name-sup3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:844ba24498bf1e9226d361a20c821cd2b6a88d1a115b15b20c5031f4297bd6c6 3 | size 830 4 | -------------------------------------------------------------------------------- /src/tests/graphics/newline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4890697cb28f2f435e5dd55b6651d7afecede330438183bc85b7a5ad8efad86 3 | size 391 4 | -------------------------------------------------------------------------------- /src/tests/graphics/outline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2ee907926aa39d62f64e593072c51e8b8662444897f6e7afc1fbcf5be03d723 3 | size 199 4 | -------------------------------------------------------------------------------- /src/tests/graphics/outside.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:110e1327a718bf9cb1a94fbe06368942b3a8f9deca7a372f867aa230f3cf0f61 3 | size 117 4 | -------------------------------------------------------------------------------- /src/tests/graphics/system.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d5165fab47c09705f7715438ba24fc74210cac407e017a885e7762d772439c1 3 | size 320 4 | -------------------------------------------------------------------------------- /src/tests/graphics/thinking.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b35662d9eaf0b41c3dc9d0a868562714bcc61689e070a704e0f59cd451b84923 3 | size 366 4 | -------------------------------------------------------------------------------- /src/tests/pony/blinking-skip.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1efee489417a92a2bb3400c5c2adad6a12db95e13b2b9c75a2ad9dfdabbe641 3 | size 1810 4 | -------------------------------------------------------------------------------- /src/tests/pony/face-extra.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0157bc48fc02cec6b3c6974d7ba53bc35d614d8f0022f5f3c1b04bf7cfaec42 3 | size 1862 4 | -------------------------------------------------------------------------------- /src/tests/pony/freckles-flip.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c07721178b116bea6573e52e36189b28d6c1e861382ac8ab5b0e90935e66e70 3 | size 1579 4 | -------------------------------------------------------------------------------- /src/tests/pony/griffon-socks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de3aef0f870de0d3402baf4ad0630be6dbd42a5dec4ad75fa2cf707b7dfcb752 3 | size 1905 4 | -------------------------------------------------------------------------------- /src/tests/pony/hat-horns.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5eb174d9867a43c44364a20c657c0086e117e4f37848079d5128ceaf13f5d832 3 | size 1509 4 | -------------------------------------------------------------------------------- /src/tests/pony/paws-socks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ade62d4170df45368cd449d97dfd634687cef35476d346e9257b5d752237cba6 3 | size 1492 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-fetlocks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f470a6f061b616438f4c166ce46b818fbf73bd62c18c23bf23ca7ffd9c567d5 3 | size 1757 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-socks-cm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:095a1ba1159a274830c27d5eebb0c8cae276e537f707c2322d4d8e013737e6ef 3 | size 1638 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-socks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e0f456b33e4a9eaf5bdab6dc852b723c278b021a1e09b9309ea75a410b8b2bc 3 | size 1687 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-sword.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74e50321d3ee22da4e40a79c329789ed35fd9422b0deffa2c950c56e8e6ed50d 3 | size 1015 4 | -------------------------------------------------------------------------------- /src/tests/pony/wing-open.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e27a0585fed2b1d9b742d298a8cef744bf1721fca720056043c965812419bba 3 | size 1651 4 | -------------------------------------------------------------------------------- /src/ts/components/shared/swap-box/swap-box.scss: -------------------------------------------------------------------------------- 1 | .timer-icon { 2 | position: absolute; 3 | top: 15px; 4 | right: 3px; 5 | font-size: 14px; 6 | color: #ffcc55; 7 | } 8 | -------------------------------------------------------------------------------- /src/ts/server/api/internal-common.ts: -------------------------------------------------------------------------------- 1 | export const createReloadSettings = 2 | (reloadSettings: () => Promise) => 3 | async () => 4 | await reloadSettings(); 5 | -------------------------------------------------------------------------------- /assets-source/animations/bat.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b756c910fb67d01ca6937574b05dd2191503d32c15ddbcf0cb9462c41f925ee 3 | size 31240 4 | -------------------------------------------------------------------------------- /assets-source/animations/bunny.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04434505e309394ad87e6b29522e3b8bcc7b2ad8d22f1e24d496ce7943a6cbf7 3 | size 101112 4 | -------------------------------------------------------------------------------- /assets-source/animations/cat.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27642b8dc86617fecd6ad47e8fe1cc66509c6c06634186a2a49637884ab42d27 3 | size 62709 4 | -------------------------------------------------------------------------------- /assets-source/animations/firefly.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7db2bca6807aca5f9bbe70d95c70cd27ac7972f7492905a816b904ddfb16f0be 3 | size 26820 4 | -------------------------------------------------------------------------------- /assets-source/animations/ghost1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f086626133cb818a398975e6c6ae27b9c4a856ab36d59ed554edb47c5af55db4 3 | size 214496 4 | -------------------------------------------------------------------------------- /assets-source/animations/lantern.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68e630285a09fb21f84ea0430c608c18e9b3931d48e1c666c61bea2278283078 3 | size 35784 4 | -------------------------------------------------------------------------------- /assets-source/animations/magic.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b251f93e07504e97d33b31e5a54d74686952536d9c1ffb695e786eba8023734e 3 | size 31502 4 | -------------------------------------------------------------------------------- /assets-source/animations/magic2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00bdbe3c11272488152e226cedd5a7eac8e404c3816b9a6a026e36332872e087 3 | size 36404 4 | -------------------------------------------------------------------------------- /assets-source/animations/magic3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1e2b1dab637aeb7d931f1cf53d0b30900206d1be3f5eccaff13b856ef226008 3 | size 37948 4 | -------------------------------------------------------------------------------- /assets-source/animations/poof.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8d02d8c3a1ce66ee52b2d805320394ea491b184e42614fcf66c203a73493d01 3 | size 31188 4 | -------------------------------------------------------------------------------- /assets-source/animations/rain-4x1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bde5a79d1d4dc3eb1703dd5ec3029ebda9dc01734c624d22ffa947a042dd1b84 3 | size 4002 4 | -------------------------------------------------------------------------------- /assets-source/animations/splash.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45469f0eb18bac691f3a5aaad7d112aefa0c555bcf90950d401be439563038e2 3 | size 47350 4 | -------------------------------------------------------------------------------- /assets-source/animations/torch.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90010d5122eb4989b7f248d30068f04bca93415d8d9b501a9504afde9c44b546 3 | size 30084 4 | -------------------------------------------------------------------------------- /assets-source/animations/torch2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5c23d8972ccc4cc6e1b7322ea614e3f852ede0d7a40e0ee3a6a313da5db1ce3 3 | size 28268 4 | -------------------------------------------------------------------------------- /assets-source/buttons/bubble-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad33aabefdde172081cbbd2cc1bdb8fe1612ec1b11735e44b5902bb32faf9a6c 3 | size 2817 4 | -------------------------------------------------------------------------------- /assets-source/buttons/bubble2-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa9a651e4af354b6f2a0725bebb8ab0456ea70d47618505026d0ee08bb8cfcdf 3 | size 2818 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_cry.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d7adde73d37af91903b571a4bcf3bfd1436d1efc8b48f9bb1d48377d6e22724 3 | size 63354 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_cry2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0934a1b1f9ff2112273e2525d59a2c9eb60b67d3ae54811e9c2b2e8a6e3e35cc 3 | size 57438 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_tears.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af262c75a14e9f86dc37cb3b764a2b6036489b61d89076f88bc04e1f89c1fabc 3 | size 37892 4 | -------------------------------------------------------------------------------- /assets-source/emotes/hold_poof.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:457235d5c5a818b08ba61516265a764399ca595e54c69c450d7b986ace7a2d2a 3 | size 44468 4 | -------------------------------------------------------------------------------- /assets-source/icons/arrow_down.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89e99d8cd644d0b6074ea11ff789876e9c8461b3153de0bbc5eeac778e322e3c 3 | size 949 4 | -------------------------------------------------------------------------------- /assets-source/icons/arrow_left.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:771745554208e0d42a0f9620c807f232da2f6eb7335d963514dedbe157a22e26 3 | size 950 4 | -------------------------------------------------------------------------------- /assets-source/icons/arrow_right.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e3275158cd39cda7ab3e876deb5717ec06a98f954fe96702c240a32ba27b04c 3 | size 951 4 | -------------------------------------------------------------------------------- /assets-source/icons/magic_icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d08efd993ed5a909291654f599097ad6fed890a1d859ba7794bf7d53c792d5b 3 | size 2834 4 | -------------------------------------------------------------------------------- /assets-source/objects/apple/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ab997251f0e9d66f92ba456f4fa494481d73ef5ee86cdf58fcc5a961c673d87 3 | size 26296 4 | -------------------------------------------------------------------------------- /assets-source/objects/apple/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3658733bdee77f3a9e3bd8ad4a0344bca84c07682c9d39690b8df24232577840 3 | size 23068 4 | -------------------------------------------------------------------------------- /assets-source/objects/banana.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c05d04dadb3e0b3642ea8e41c8f144602f282105524489a521539042ce1c0d81 3 | size 22376 4 | -------------------------------------------------------------------------------- /assets-source/objects/barrel.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cdb7e841d9e8457012d34c99075b525f2987efde83a1ed4f15251f8e7083e15 3 | size 27041 4 | -------------------------------------------------------------------------------- /assets-source/objects/basket_bin.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22964d8fab3d7a126399a68ca97f1fa6fd975a3f9ef8924de54910af561ea5aa 3 | size 35784 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03076b8acc58c1a362d74115c906c5354c07506fd334bad4758fb6f036304664 3 | size 27801 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/back.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b12b1d3c778d2a8b20bc98895cd6745afbd1348d986f564da8bae258966878a 3 | size 495 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/back.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afa07b1919fc92f1b46ccdcf8bbba0f9f5ec228aebe2659b6bbf045d27d41483 3 | size 29098 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/backh.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c750df25af6adc3ba9b6359782639ebc921b7a4590289deb8208aeef291fb5b 3 | size 484 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/backh2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4427e259d2b646cb221097c611e7a3ec15d1671a7adc25377dd1c4974130a7f5 3 | size 477 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/seat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79ab7b716062973d6183aa0e233f06b9469d89db0c44a073fa4dd7fdb9146138 3 | size 393 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/seat.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11f3074c9cb2ec3f0b88a4f847ae89ad96ac0e317d9c440457f597f9a0b26b44 3 | size 25034 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/seath.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bbf1a09923da1fd4125403dad766ecfed611e9f66d02a37a5ffd5dc5285c726 3 | size 398 4 | -------------------------------------------------------------------------------- /assets-source/objects/boat_front.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce5534485df04a0f6b536a7f26b6f258882a1931328c7443d701e4a3d8e9e10e 3 | size 28325 4 | -------------------------------------------------------------------------------- /assets-source/objects/boat_rope.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:525fa449db62c7507abfa425d00df6b4c18caf684c2cbc083257552ab1fe94b2 3 | size 22878 4 | -------------------------------------------------------------------------------- /assets-source/objects/boat_sail.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d4c336d39b4e0ccc8e05630143f5ea0aa3299102ea30086ab6318080c7079e0 3 | size 74821 4 | -------------------------------------------------------------------------------- /assets-source/objects/bookshelf.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3887dbd0a1018583a0e7860f48dd26edab9305ff20eca34b208027dccdd7007 3 | size 39259 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/_base.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afc68c1579a88cd1aa14eda0418beb94f3dfe2ee6cb31168dc4d2a75a6a12909 3 | size 25788 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/_gifts.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05822dc9a6c4a1c7ed8482d146b78a60f6b83441bc0a60da06da9b29fbb8da67 3 | size 32460 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/empty.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e03f87cd3b3ab3fdc6c35d43446e2aae2bb9b290351e2c247814309eac4d35a 3 | size 23590 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/fruits.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:367b57245b12c32e3f3d9023c6f8177032d70892ef465a9ae203ba57377577a0 3 | size 28135 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/gifts.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b09d5889fe524eed8db6e5886d083a8b5f5e36a51e472b4428ce24cfe23dd581 3 | size 28731 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76efeb3abbdd011efd0bea0e6568ec269f6044f7f7c97d6b1c22a75f65508430 3 | size 26422 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/1b.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ccd3225fbfcd6ad57a23fbdeae6d23bd058c5686366f383f6c57742915cb4ef 3 | size 23266 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a64be7041505b421a393c0c7272c24aa0ab3505b4e1ff160922411f4b99c14d9 3 | size 23134 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/2b.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:716356d35bfda7b6d2c891faa80ed0226bc86a1cab28cb587415bf415c4050e6 3 | size 23144 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8d1c9b37b4c285b0b23891bf0c90418627ec310248fc7e8c6842883ddb7571a 3 | size 23054 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bde7f17a3b81620ddc29890a012ca14b42b5a5802e93dc840f3d5649bdb988c9 3 | size 22732 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c52227202b5244bb70eac316108d7ab8c1561d0662ecf76cb6f25e40e43f3d2d 3 | size 23385 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc4ecffa5c8bb8f5c0c6d67486619da0b2c473300008d83486df05c4570a5384 3 | size 24616 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13fe44140f4413582b62d5aec3bbd0d2449e3da5ac4098e442c094143f8a2e4d 3 | size 24718 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdf63dd99e05314df52275bcf6b6c2d0816d05cd18f264efcca4f9efa808fdbb 3 | size 24270 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:577a2652c64e4129c981e43e70f5b7ccf63235749a5efb624273aec93982314b 3 | size 24582 4 | -------------------------------------------------------------------------------- /assets-source/objects/cookie.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53a9cddbb19230dfb865aacf6ea596bd8b04edf79fdb0156dadd0feabafbb8ad 3 | size 22588 4 | -------------------------------------------------------------------------------- /assets-source/objects/crate/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1372679977b65a5b661c086b30b3d34b1a50a247ad41ef6630ebb464ef645dd0 3 | size 29794 4 | -------------------------------------------------------------------------------- /assets-source/objects/crate/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44d468b7f9931dd60634b4a085d4d70c27f1d63a2bac9d33698461e14d2a65a4 3 | size 24712 4 | -------------------------------------------------------------------------------- /assets-source/objects/crate/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89592d99e241f84ed95c4b13d1a62e8e4fe9784ada99db64fccb88316841f874 3 | size 24612 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3330f9f7573b85072fb32dccbd8a53699fe73b79ca96b57b5f9ed191cb6a162f 3 | size 24988 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ea933025dc74775379d88ed47c3c14def19647687d9e6f1f11c7397953a9b2c 3 | size 25569 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d10b95ea8605a8ffe9a5c49bc50754914b2935f224dc3dd48e1433572cb800bc 3 | size 25426 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e72b6fc8e5f75a0403c9a17ddda43a679722664deb0b3ca107929ed2e3760e3 3 | size 24963 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebba630eb727f75e989901a221748216b6e9346ae5fc9950ebf5af6718f285f4 3 | size 25737 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01d654855d8a73ca3010b92e4fe1ee135a7ab724cb8c37a82dbb50602d2930b7 3 | size 24327 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6ace9fece3a4e2cf92b554e19cfc3b3368fb9697ffc58d29397a32a3b6fd481 3 | size 25144 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/8.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dedb7f7a2698c43882344dbbc1287a70e886e2553ff3affd26e4a8c16c482338 3 | size 24840 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/9.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a3094461d34ba164d967cad99fc5e7fc3ec8ac5de60cf63ddf1e6a0abda4b59 3 | size 23861 4 | -------------------------------------------------------------------------------- /assets-source/objects/cushion/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e472a5472c58f8110a82bf0638c7eac1c520ad6eab863d5bd386e678dd33b029 3 | size 24798 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/10.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:550abf9cf8da3d66879c32c51025f45632edf17438156710709efecfb1e4632d 3 | size 26102 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/11.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc62da871fc67baff99d0d9ac819172bcab94ff156ee6edceefc3730d05cb6c8 3 | size 22974 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/12.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bdecb1e256ee347557565e2b8dee1ce5ea8b379c53f6d64ae524b8f67f31156 3 | size 22954 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/13.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62ca0e4807192efd71eb2af704560a20fb998f7219684bc4ebade030e80d5d8a 3 | size 26108 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/14.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:501802251081e88d45046c9a1353fd6ad9a7610ab17e1626ae3c9271a59fd4f0 3 | size 22926 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/15.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69873cf32673d20f7cf67db87fae36f4ea6337d31b456a43195efbced120133a 3 | size 22954 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/16.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6c8e4bb3c9bac167bd32afe12568523f169e7fcd46b1d3177ad427523afc560 3 | size 22948 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/17.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f6315f5e9444684abdfd5e6c41fe6b0b66157f9019578f892d1e1fef9abeb5f 3 | size 22966 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/18.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2eec3ba50a208281a977d0b4f730a3343c2b996dbafa0af3a3dd384ee8315f7 3 | size 22958 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/19.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b136ef9aae287493cc75df65adb7b58a6b49cb804a3ea0251b59b355856dd2e1 3 | size 22944 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/20.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3dfa494a97e65f7c172f32295e4c33445262b29fc0c5ced20f0fba81ab42e9bb 3 | size 22958 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/21.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe231877ba3456ee947e9380f74350dd7fae0e5834483227a0009a26a3eb2e25 3 | size 22956 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/22.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fedc537bee14949dbd63a7515d874ef6695d59f06c38b60a43dcd80c9cd59b2b 3 | size 22950 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/23.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0e082da30fd1dcf6bf7fbc31999fafd2669942c0f4b195266ed69a412b9fd48 3 | size 22954 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c41f3385d22653471c21d23fe20b760d4cf1a723b5ff354afced1f72739d0eb9 3 | size 24548 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46e61327aec3113ed602dd6fd4dd0d35c29d81c205b044251a1ce3a26a159725 3 | size 26010 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4262aad3f93f5fc510cf67cf41cf45d11c093a7170bcfaf09b0420619b6b7e31 3 | size 26870 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c554a52fab91417670fdf35a8556abe4d144a5cb938c3f9c8ea938ee0c9fec5 3 | size 23746 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:473cba467f74eeeb9c91b4b838f2504199c0bb800f560fa45156252b8215ef2b 3 | size 23580 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73bdfbfbc59d2bdfd505318b7fa6d10742b67db48819595d1b7c1e5f07a9f72f 3 | size 23670 4 | -------------------------------------------------------------------------------- /assets-source/objects/gift/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a57014cfb6a8c1ae3450bf37e7d237f522b7c873d4a5f485b34eaa69c0ab66d7 3 | size 23824 4 | -------------------------------------------------------------------------------- /assets-source/objects/gift/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab3ec01c27f79b3cddfdd535cdec6b00a29425896bde9af0491b393b5055859f 3 | size 24692 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2480bde28b6ebae01c10c0478a1e20808918ec50b27fe5c974bbb3fb85fa6d03 3 | size 38866 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9f47a3511370f69e2ccdf5b5facd458a1981ecb64583733f52dee215d39b7cb 3 | size 41115 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1b1f8cbeafcda16ad507772163aa26ccf90fcf1591439e9353e26ba5118c735 3 | size 38938 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c80fe1674ce2c53a0d070934a63087333d86c3ca6d8064e1a6c78aeb580cfb0c 3 | size 33683 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3847feb9bfdefaa39ae0699b476db49c6250a09193f33ae1cf8ec1bfc582175e 3 | size 32213 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ed80a275e8b662cb4adaf632edbb866738e8c03e6df465b1ca19f6e773d9b0f 3 | size 32827 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:914a7872f3c989afaa1e7da622107a3d3bf328710a9ded793d7022126bcc2629 3 | size 24703 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fb259fd314e2612fd35213311f6eb12bf5d109a1329d22c1ab8245887672e2c 3 | size 23879 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50116a06ca2947635b9095f81b3e65f1135b7dc900827aa738348deb154fc67d 3 | size 23524 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:070b4124dfba95619bc3e2efc3d8fd5165058e4dadfc4452a2f7b99404d9333f 3 | size 24741 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4459f21bdd248e4dfd35dad98757362ba8d7f6d44c2c07525e393b2cdf61e4f 3 | size 23899 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f20d53ba3958185fe1a6bb8691ef2e13cb421a7c1bcb73d6f61c52ad2c954a7a 3 | size 23510 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a26139c2660870834f6f90fe0ce0cd984fa05cd04aa9829d86132435e8859937 3 | size 23864 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb27d108963d5a173843c5bf3a7e62826c25855296fd1d1f870ab0664500c466 3 | size 27062 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b5f7b2ac29a4de4c3abcaadeee8769dfc996f5359b1639db01a75cc7449a3e5 3 | size 23844 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cd468d39e3532c202894c18fd48c119c2e744541501f42d07664c88b0558ee2 3 | size 23842 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fd9930899005006442f463f475f2c55a7c9915fb1cf8a1e445f55042b41cabb 3 | size 23844 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35230644b3f564a8ba43f0f4bf672c00a160fb4d5bfcbc4c1e5e3d86b9b23e43 3 | size 23780 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9f21c71583a9720f4c149362bbf840bf86510a445871d49d9243958152b1f27 3 | size 23776 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/one.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93befba752c5a96f0744991d20bbdf28144807417b55c5b769790899712fc261 3 | size 22044 4 | -------------------------------------------------------------------------------- /assets-source/objects/grass_tile.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed02f6813247880c22ae5808607216fa19a39f22acd8798c653e13e75e600cc2 3 | size 23301 4 | -------------------------------------------------------------------------------- /assets-source/objects/hammer.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:124c9dac91b2147e89fe1bd08dc906a1b5de29830705a18633e9260b5cef6bbd 3 | size 22630 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bbf9bbbc1d468f8600bb4ada38ef5f820aa4488f60e4f44e8e5b91312413642 3 | size 23364 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47dfc74c247ff8402b225514e2cc89a5fd155711f2175323c1dfd7228c0e732c 3 | size 23384 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eab677272b0abffa7d3750807aedfffb6efe64f49e75b4ddfdb1653d312af224 3 | size 23390 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45cc4ef5daa2e65eec8263bb85ba3cb2db0706bf0b571138ef04647e3795a74b 3 | size 23388 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:615d545210a2cf983702167a5d728628b6cf41f4a147f8cb20e7ad2ff9b3eed6 3 | size 23284 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85407cdcb48570d615923e3e4b0e6676d46684597f965699d85126ebb00c1ca8 3 | size 23284 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaves/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:262873ae48f8e201ab860512b9de8495fb1d15098b09cc5728c099219db184c8 3 | size 23962 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaves/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c0a8a60d3c8c2a2610102e135c047a8f2bf4717c0bbe4204c95fd965f8b9887 3 | size 24963 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaves/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d56f88ea00d01469926c421cdb5765790bbc569513e22dea24774ff042ea43e 3 | size 24448 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaves/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54a2c574ef4460018d660fca89ad870b192d252f9c12b8ba7cd5daab682a86cf 3 | size 26814 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaves/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f032ed5b4c5b31b20941b7cc55799b77d123523d4e2eea413d9940213760909 3 | size 27714 4 | -------------------------------------------------------------------------------- /assets-source/objects/lemon/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b75687ecbdc6a0e7e388efacfa4843fb7c35dcba38b86768a3b00a3bbac3dfd9 3 | size 21912 4 | -------------------------------------------------------------------------------- /assets-source/objects/letter.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:747f335ece8c0997267a8e00dc1c8971f26c53099b9f7907882d7d20b50ebaea 3 | size 24638 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_cart.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b300d5692739b6ca84fa694847a281661406d120456c0b7a14d1f0ad3939d190 3 | size 32552 4 | -------------------------------------------------------------------------------- /assets-source/objects/mistletoe.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a15cbe850e18e2a0afd2fba250873e635d6b925c91e754c29ee3d605addda29f 3 | size 22060 4 | -------------------------------------------------------------------------------- /assets-source/objects/orange/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c391faa8d5d97a6505a7a1db8d0bfba9aa05d49cd46ca0a35703bca3bcbacb6 3 | size 23182 4 | -------------------------------------------------------------------------------- /assets-source/objects/orange/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef4851c54ba115835021558eada284c12409668d0eb0e6f8644d28d26e557a8e 3 | size 26104 4 | -------------------------------------------------------------------------------- /assets-source/objects/pickaxe.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31e2dc57d782c6a18209d8008d3c3481d89ef835131a04e397a574d90734d00e 3 | size 22420 4 | -------------------------------------------------------------------------------- /assets-source/objects/picture/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dc58fc9c3fab7c22f778e5240e0a1a045924860bf03eb509207c056cc1ec44b 3 | size 26464 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77d3dc1e49fabad5456b256a93f5eca57e44a497798959ac982bdc0fc56eec37 3 | size 23433 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44f92211df4e5ee27156d8fa8e2877809bea248a10f2c23567d38c6541e74a8e 3 | size 23842 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e210926bc5f9d613d2663b1c3d3a3dd03b0299bef5bc3554c7aae9ab941a942 3 | size 23978 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d77d69c88d8970055c68726eabe3e2ae1aee2e01e86f34a9090dbafe4c7fd842 3 | size 26866 4 | -------------------------------------------------------------------------------- /assets-source/objects/pumpkin/on.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cb7cb00cfc1bdc3446c3a4ce5721739f79a34f84e1333bebe9777e0c3ed0eaf 3 | size 21606 4 | -------------------------------------------------------------------------------- /assets-source/objects/rainfall.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4de08479d12e45d2aae9ae5c3604b9c56a2019c575659adbd4ee738e73caaebf 3 | size 41130 4 | -------------------------------------------------------------------------------- /assets-source/objects/rock/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2ca7ffc681dfba13a7dc35004b35128815e61415eafc1abd5b22bc78353a812 3 | size 26788 4 | -------------------------------------------------------------------------------- /assets-source/objects/rock/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d617c51368ddb85562907c9aa7c34c6bcb65d281fae307867a30b018db5a45b5 3 | size 24252 4 | -------------------------------------------------------------------------------- /assets-source/objects/rock/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0790f67d67c92a880aa7509de818bd5ad9b78c1d72dd986176bd51246b557a5 3 | size 27341 4 | -------------------------------------------------------------------------------- /assets-source/objects/rope_rack.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5338dac815ed20d3f3f40f8e41cc0e2e11ec3eea90a25694644da6a230b5f356 3 | size 25402 4 | -------------------------------------------------------------------------------- /assets-source/objects/route_pole.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84df4894d8119ac0a80231a9ee191dd38efd0d0fc965024547b93bcc91c93cd7 3 | size 22836 4 | -------------------------------------------------------------------------------- /assets-source/objects/shovel.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db3cc11b3cc5b2939f0ca0e5816c7ec04599d9a33dc3d8146eb9b985c5482ddb 3 | size 22773 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2612c2a2a6c505038df0c9df2fbc750e38f6b29b44601da703856458f40e4050 3 | size 21859 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc254cf295ca19a97b3bea38700aaf993ae35e3b1102d4c2568da6b4444ed992 3 | size 22012 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2636bf42a6cd3d688367bc3200f66ab6a96e266921f80281c6010630ead35458 3 | size 25148 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13793aea443a7e7e10df373e485c4640f527a37ece6e2f09ab251a1c9d28ee0b 3 | size 22088 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign/blank.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eb13a5402936210f6647b2d979fd083794be9da7d2020578dde5d0e685ec5bb 3 | size 21804 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71f9c246a23ad07ebf2e2dd4f1b92be38d52bf04a9620122a6b5f917f3400218 3 | size 24348 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22b0a6877c176062766eed5d292a4b51481918a4c9489bbeb37a194fbef2986b 3 | size 25658 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:238ebe8feb39d48d7a560475852f3300587f891261a05c3f436cfc43b3834f5c 3 | size 41329 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3e328f1baa6b5b615cb45733b6c75b818395a48cafb5180243b0b30bfb8cf3a 3 | size 41954 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a858adea333d54d666061a9acdc902bf06d9c429e178c4fe8021c6bd1574f090 3 | size 29347 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad7dccf5e3c990d66554e8e7ecf750af4b63384d2b18b99fdd7a80488ae90f30 3 | size 39873 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d2a0048148ffb2ef69d7cbd69b9b69f88e8840a044cabfe5408618af62ec197 3 | size 40335 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/8.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c41116353d199ae74beca6a113da063e9dfd4c2c4437c39ca508252c14edee49 3 | size 40271 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpony/9.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f39d57ef50f334479c040c4aa249ea77772a9d8512051f369fe052299a0fb08d 3 | size 40132 4 | -------------------------------------------------------------------------------- /assets-source/objects/spider.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e76c7583c5dfe62c0e3d6e504169e0676fe8f17b863a40f145dd254d3122410c 3 | size 22297 4 | -------------------------------------------------------------------------------- /assets-source/objects/table/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04cef616a81140aa95e48cc00315ed89ec08867ead692cd43dbae492d271c3ef 3 | size 30761 4 | -------------------------------------------------------------------------------- /assets-source/objects/table/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f9009c31a41e77896f69280a4ede3aefe3378760c9f4a038292779ff45fd89c 3 | size 38463 4 | -------------------------------------------------------------------------------- /assets-source/objects/table_3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b94513ef107f7040206ea31cf5614da86ccbaa8b59039d3ced9e4acb549f1215 3 | size 24382 4 | -------------------------------------------------------------------------------- /assets-source/objects/tile_none.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e63b2a42540b9573dc81eee9ef7c6bdcddc5841023308e82817fda08e9c3b0f 3 | size 22224 4 | -------------------------------------------------------------------------------- /assets-source/objects/tools_icon.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5088fcff6610831a8a8ff887a9bc711172880ccbc987a821440c3ad370bb5ca9 3 | size 22276 4 | -------------------------------------------------------------------------------- /assets-source/objects/wall_map.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9575a22fe14332ffdfc5a9a0c279bcbae020c3b7cae669a5147a7f4c5168d428 3 | size 26800 4 | -------------------------------------------------------------------------------- /assets-source/objects/window/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3219b0d5497fbaf2a3812633435a60603baa8b7919b1ff549f68647c323699f2 3 | size 27196 4 | -------------------------------------------------------------------------------- /assets-source/pony/back-legs.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f90f15bff966709b789806084ee3fbea300103e461d16d3bd1df31c6f7a4443 3 | size 213435 4 | -------------------------------------------------------------------------------- /assets-source/pony/body-wings.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b02529863e6f30b3d9711ab757f26d28da84091762b58672fee3eb733398cca5 3 | size 841446 4 | -------------------------------------------------------------------------------- /assets-source/pony/facial-hair.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:015c5131a159940517226996884ee9172a60afb2328dab5f4b95ff3fa1bd6eb3 3 | size 216107 4 | -------------------------------------------------------------------------------- /assets-source/pony/front-legs.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0642b0da40d2e752a6fdebdd9a24e272645777842197f17bab16237b2474b09e 3 | size 333172 4 | -------------------------------------------------------------------------------- /assets-source/tiles/cave-walls.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25eb60ca277c1b0deb5b3c3ea0c716d9fd2c9f1188b75162174363fcf9df2bba 3 | size 8011 4 | -------------------------------------------------------------------------------- /assets-source/tiles/cliffs-grass.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9cef947618eae8206ae8c18df0a1fb50950c8cb112203267ac00dac186c7190 3 | size 6991 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-grass.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24a79ffcc21fd57fae0bea7bf6f104caf9bd6772e8f9be3cda5c31e0793c2218 3 | size 27205 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-ice.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee61f76ae2c8535b3fd2b2b990597a81110681ed5b5c3273c113ae615709aa83 3 | size 15323 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-snow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46ac86ed6fc6b10c8935489a63809786c347288ce9b0235765ac515d621c52ee 3 | size 14924 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:948cf093abf7fabe33f5d7a14140ccb6a92f69438fc61a914faa9b11e55ce1a1 3 | size 13402 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acc0ff7b652c8bf78cf2dd0243f7a4b533744824bc6157b427bcc3e240f66892 3 | size 14048 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3f70be28938d3427704d008206fe08122f148ed6ac4941135f394d7846b2bf5 3 | size 14251 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:906ecf71577a09428d058b5404a0fefe59721598d7f0b95fb005bfdcf346c025 3 | size 13958 4 | -------------------------------------------------------------------------------- /assets-source/tiles/ice-snow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d44856d1b1944bf3d91cb2f0a493f72da31a9505cc5816ef31de227956e82d3 3 | size 15902 4 | -------------------------------------------------------------------------------- /assets-source/tiles/stone-tiles.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf37d63643c2520089bf0bd5d2d2973542db8aba90b46e98acb49f62b68305f2 3 | size 13414 4 | -------------------------------------------------------------------------------- /assets-source/tiles/stone2-tiles.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6f170dfb77ef8546773065b0aca063913cedfbb6bd33f03f6e8354f67694e40 3 | size 9193 4 | -------------------------------------------------------------------------------- /assets-source/tiles/wood-tiles-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80bf5688e9a5b8b7ee8ef70f528420753d87a767b9119bd2118f79c0be6f4b5f 3 | size 4081 4 | -------------------------------------------------------------------------------- /assets-source/tiles/wood-tiles.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba2db078ec9f5f1db04dd71561dbc11e0fad995c74f11f931b93dbc0ab6e6aa2 3 | size 8029 4 | -------------------------------------------------------------------------------- /assets/music/cave-crystals.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a8c18c5208cf0aec6cee75abab917a0307e0cc0440088e5bcdc1b69258cdf8c 3 | size 2248037 4 | -------------------------------------------------------------------------------- /assets/music/cave-crystals.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:304fa16dd04afbba9b49a67ecf4315619760e83395bf8629b896743a240c7c71 3 | size 2010851 4 | -------------------------------------------------------------------------------- /assets/music/cave-secrets.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c83bc964dd5b807a37b6a76c659243c096f39189f93e1121f2f97028f553093 3 | size 1641952 4 | -------------------------------------------------------------------------------- /assets/music/reindeer-winter.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94c9fa9de378cb0991e8ebd49fffc962fc2c7db4785d205519a5547514864335 3 | size 1345663 4 | -------------------------------------------------------------------------------- /assets/music/reindeer-winter.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2a39b715c5a6536c43c9a48beebdb4964212ba818ac20a762a336b327832401 3 | size 1225776 4 | -------------------------------------------------------------------------------- /assets/music/sunny-island.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b264a74d7aff2bb48e1baa706a1e65822fcd1c7fcff5bc8e201f76bea91d9478 3 | size 2731417 4 | -------------------------------------------------------------------------------- /assets/music/trees-winter.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebdbc639f09e5c476256bb463604b9922de5576fda409cef00315703f9d4cb49 3 | size 2405965 4 | -------------------------------------------------------------------------------- /assets/music/xmas-presents.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d32950b8dfbb36078b0b6b0c93045387fed0f8a98d29403ace88690f7ec384b 3 | size 1825062 4 | -------------------------------------------------------------------------------- /assets/music/xmas-presents.webm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8395dd64e92f5123aa45085d9cbda710d766e82d8d12facf5d88d450ffddcbe4 3 | size 1599833 4 | -------------------------------------------------------------------------------- /favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0b2042aa6110be99a426395fbbc55aa08eb2f42cebdb81bf4138d862f91259d 3 | size 2452 4 | -------------------------------------------------------------------------------- /favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f69771a4480f227e37e1aade252bfd5e5ada9ed9a27001fe54a13cf892824ef 3 | size 5141 4 | -------------------------------------------------------------------------------- /favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fad814608376728956a2d5f8c10094212089d2f23af1ed79b3bd86a10e601767 3 | size 522 4 | -------------------------------------------------------------------------------- /src/tests/graphics/announcement.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5584a05b7e0338536fe61ea642c919a85fe4b3e9544bb624b1a01ee83016d2f3 3 | size 349 4 | -------------------------------------------------------------------------------- /src/tests/graphics/bounds-none.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:110e1327a718bf9cb1a94fbe06368942b3a8f9deca7a372f867aa230f3cf0f61 3 | size 117 4 | -------------------------------------------------------------------------------- /src/tests/graphics/break-think.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3753fa88b622a11a7d9ecfb28132046b2de149c28ce90bbf3008432305d3e177 3 | size 493 4 | -------------------------------------------------------------------------------- /src/tests/graphics/hello-apple.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99efb3dbe24b0951dcc136bc0b412a0978d151de7f675db9cbc9837d023804fa 3 | size 403 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-left-chat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ab45b0f26b5f355275ae68c4a6ae54f0637e3efa443b9740ba031c03d4bd2fb 3 | size 353 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-left-think.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:962c054e0c87e316259d31a692f3f8562cfb07093923e3c31aba053cb80345c2 3 | size 383 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-right-chat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60c29964eb1ff877aca9131a0dba84429b6d001b81f600bdf6327dbabdcab7e9 3 | size 357 4 | -------------------------------------------------------------------------------- /src/tests/graphics/outside-chat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5ff1d4ee6f5c0ce345002ac16c15566be8ba7b36ba5f93b4ace62da953ad53e 3 | size 321 4 | -------------------------------------------------------------------------------- /src/tests/graphics/outside-think.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ce68c465713d15a832f44e5233dd213485ed4194688804ec49c461ba6888b1a 3 | size 335 4 | -------------------------------------------------------------------------------- /src/tests/graphics/party-thinking.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7dbd938f26680fbf5ea3e53e4931dd4341c688d5782282ce7633a29080fa77d 3 | size 419 4 | -------------------------------------------------------------------------------- /src/tests/graphics/pixel-numbers.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfbc337e8cbb51c444fbd1602962233fd724d14cce806af7f78bacdb8fff17ee 3 | size 246 4 | -------------------------------------------------------------------------------- /src/tests/pony/blinking-angry.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:959f99a1cb2b2fe03af313c6ba6b50eb58d06dd6318953607e863a882a1fbf22 3 | size 1757 4 | -------------------------------------------------------------------------------- /src/tests/pony/griffon-lantern.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89fe488e9f2efe95d84fd777dafc5fbb79adbe8063273ee42460923ed29e4d70 3 | size 1836 4 | -------------------------------------------------------------------------------- /src/tests/pony/holding-letter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34189b1a6fd25da4ef3a10d74d85656be5bce382ace49f02dec5bf8da9c323c4 3 | size 1310 4 | -------------------------------------------------------------------------------- /src/tests/pony/sit-neck-accessory.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9c823a9b24f3fa25acaac666cb5fd90755197a25f1f008cd45c089aa5d6771e 3 | size 1662 4 | -------------------------------------------------------------------------------- /src/ts/components/shared/custom-checkbox/custom-checkbox.scss: -------------------------------------------------------------------------------- 1 | .disabled { 2 | opacity: 0.6; 3 | } 4 | 5 | label { 6 | line-height: 1.4rem; 7 | margin-bottom: 0; 8 | } 9 | -------------------------------------------------------------------------------- /assets-source/animations/boat_wake.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f5523db4d5c088c6139d6c1031a79f11d9156db71be32f318224de5c9ffbcdb 3 | size 42799 4 | -------------------------------------------------------------------------------- /assets-source/animations/butterfly-4x1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53a8425d805875d80b39dc390cc44912de50a8e0baeadd908066e394d829d4ba 3 | size 2949 4 | -------------------------------------------------------------------------------- /assets-source/animations/pier_leg.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b6dec1fcc8cc5f5dc6ea5d46209bdeaa73aef1d65517e5a7fd6f97fa49eab78 3 | size 32406 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15abaae1b0e60ebe66f22a4521bb1ddd20484ed7e672baf4c45a67847405b5cd 3 | size 37208 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a30d05ba0476f1d87831207bfe92f5d643ea1991a5bfaed3584864c43df03c2 3 | size 31362 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:972e4386254bdf5cd423154b412adc49d2b7fdf1b47c3e5bd59667451e51a2e1 3 | size 33702 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c050934d87a169406939c9970db8330034ca1699a155dd823f68b6bb451488ca 3 | size 30846 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dee94b5c34e219a42a06c70de260710feb00334a8d3921582d5947ac3816721f 3 | size 33751 4 | -------------------------------------------------------------------------------- /assets-source/animations/pony_wake/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a264d4e55d93d3c725e8ed2fd44286ee7f00e9c5f3a1cb6320c60d5ab95e153 3 | size 31146 4 | -------------------------------------------------------------------------------- /assets-source/animations/poof2-9x1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:732fb444c77d9d42c7ff51e6034f271bb35d3c8e96a5735fe951a9cd767210b9 3 | size 3014 4 | -------------------------------------------------------------------------------- /assets-source/animations/raindrop-4x1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ad24dcefaaf6422a75cc9e615cc74b63f90c848d728307369c0feab0f2a8844 3 | size 2853 4 | -------------------------------------------------------------------------------- /assets-source/animations/splash_boop.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b51d786f4076026ee383deea99885adbbad128e440a8dbe8fa88a6b842689310 3 | size 59156 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:135f7b416675c4e1e213c6403a745fa544f216d10ec19765047e84bd7a994b20 3 | size 29234 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d77dee5457a3a7058ea98c0acc1facb1122a1d88dc662dba340c25147cd8f78 3 | size 29423 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25cbfa226d7a9a6c74bc2e89306123083ae0eade656fb773e0668781dfa8d832 3 | size 28620 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd7d8900d86a9288e0278c65c5aaca68d85a6a6f44bd2cd5969d570077c9593d 3 | size 26475 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a441f3c79e20eaf5a1e002947d2662ac7eaf452724ac131592e3c7b5dc2112b 3 | size 28685 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7220a4222977c819ef5636832aaf94f1225769b00d5617f9a748b5284c51a29f 3 | size 28378 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0803da010735148ff35c234e5aa40886c98cfd07222aa100fb78b826fbcc49a1 3 | size 29565 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/8.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:628648782e04eee23b4fd646002d97c0760ee4fa07645d8b0bdff055542c896c 3 | size 26346 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/9.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4a1b06461c9d8fa7ba878c15f05fc3b6ef9a3899fc9cdbdbe14f04f3e26306d 3 | size 28472 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_hearts.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:784d18109364d274c80d8054208af2e12953fddf18b6eeeb631e7e59445b5d55 3 | size 98436 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_sleep1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:101a969a0ae244a6377219d3966f4c374f1b94386f214aaa870cfed7809b433e 3 | size 88774 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_sleep2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58d29c2932bf4f5590509a6c40cb7cc71ba1c8fbaa42af9bfb5e7785abb5e206 3 | size 116890 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_sneeze.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad70334f8f3500105811bb11756c146e0fe7ddf67c39bfec4e186b914bc2d645 3 | size 39384 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8c37c84a66e211e10ff25e07d8702d07c250b8d00c51ef760b26c8353631913 3 | size 174 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_10.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47d46c846078dcc290b6227f169bfbdb94d1fc5a46960184f0870c836cc0424f 3 | size 120 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2ae81834c1cbf3c1c45b357ade9ff4094160e11433dc18352ff9435ddb289c7 3 | size 198 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56f057a22bfb20f7e2907f90b10f1db17e67a9c8efcf868267b75cc613413de5 3 | size 179 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0621e9d195906cdaaa3c00b19676a7978323d4963eb6a2193d75dfa7c5b9251 3 | size 173 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da06b153aecedfa077006a39b6f4ba44ea7bd014115fafb24aa045008eef3056 3 | size 202 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0867646ab3a8fbb3919557fb2ffea99bb501af3a2264e2f8e00d572d9d1c57c5 3 | size 159 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70577a060dd194dab83e89e1cf1108c30d34123794f368fcff7704d7fcddce18 3 | size 183 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f37ae3081dfceeea68e794c373ed9a72b5d17d8c5a3d5700270439d7de08bbe1 3 | size 137 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_9.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4be7800f037bd08837a030407e234759097ee9a09cb4deb2ee4764957024249 3 | size 133 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/backh.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efa53a721828503dae257807433f74e17004a6b900bdbae14709de9242b9e835 3 | size 35966 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/backh2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75baafbffae697563c57d64e295c870b9b8b931430fe236d29a5ffe2805521de 3 | size 33130 4 | -------------------------------------------------------------------------------- /assets-source/objects/bench/seath.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c22fa03ebd8a87fea56adea5a1758b46bc0473486b598cbd21beb80563f65cff 3 | size 30785 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/_lanterns.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e91138688a08f89fd55e33f3a23619d763d6b3fa58e014718add31f65e74170c 3 | size 34964 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/baskets.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65a1d16f7171cb0c79079fe52673e956e721e926a2c241a4c2a682aeabf04861 3 | size 27792 4 | -------------------------------------------------------------------------------- /assets-source/objects/box/lanterns.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:750d9b68cae8bda395e6e63f985bd4b5291342fe6d57e6ef7495e6377c0b6ef1 3 | size 26182 4 | -------------------------------------------------------------------------------- /assets-source/objects/candy_cane/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91510087fce28bf39ae3b574129e7ece66d33ba934de4cf76674839738fbc306 3 | size 22516 4 | -------------------------------------------------------------------------------- /assets-source/objects/candy_cane/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ef52bf322863f48bf07da3a60035f0484456b3f50d6d022237aac9784aa2dad 3 | size 22638 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/hold.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34a81dd47b640340bc1492ccad9bdfe902226b9c28aa3b849aa83a2a740a134b 3 | size 22946 4 | -------------------------------------------------------------------------------- /assets-source/objects/christmastree.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54a40c2929035f962ac5aef65cf71245436f92a13606ea84045ec789ae255ca7 3 | size 93119 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/mouth.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1537d68d95805d66a9258c963a8b2b12e9007e22788bb77f4b8a4316f348877e 3 | size 23146 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/patch3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bc9bb4d6c6063b7c5b0246221a6c699d6e15279114e20dc358a9cfa704a0649 3 | size 31304 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/patch4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a30d62a31840e3cebbee1bfb2d98901b8b52852a4c822db134768398b133be2 3 | size 31376 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/patch5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce86217c1964a80e8f56d08c68335d198cb54cdbd1cb665f54da4eb402e004d6 3 | size 26374 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/patch6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6ddcefb8b41da486637bec85d49671c656b64a26bcb9e42d9617df356d8a8a4 3 | size 27456 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/patch7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ca46b1e48130775251d3de30f0153ba7200558c99bcec5d3cb49f0aa33f0035 3 | size 25040 4 | -------------------------------------------------------------------------------- /assets-source/objects/clover/pick.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47b9888953724e1e873a6c3d262a309f4b8839647fda78f13a6cba3f49370713 3 | size 21542 4 | -------------------------------------------------------------------------------- /assets-source/objects/cookie_pony.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7fca00aae33b9e80cfa36541bc3c744c6a2bc6f67c8934c331e1a0bc3c076ed 3 | size 18206 4 | -------------------------------------------------------------------------------- /assets-source/objects/cookie_table/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0430dc1026448f9777ddc381ff78e51edb4dfd07a3e057a40e200ee646165382 3 | size 30462 4 | -------------------------------------------------------------------------------- /assets-source/objects/cookie_table/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51771ef5e37139ff14a75c3ed6b6889ebc84d53ddbd3cd789a488c3717332056 3 | size 30477 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystal_lantern.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16e5f4b5dbaf8b3bc8834008c0ec6be332423bc9c888df704c5efb5636f40a77 3 | size 25218 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/10.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:789fc35f33206f37dfa69352a73531f8b565d456e92e5281ab111a41b3356948 3 | size 23928 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/held.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9c387f05e4f2f2b5d394c86cbdd91cd18ff284b0cc119173a34cd99e8023c7d 3 | size 23778 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9be19a4fccdbad73fb08b8ed0a993ee614613da5fc5269c147a8bd11a805e4d0 3 | size 26114 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_2_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43c3de56f929f3b473a1547615124ca3a05093f9047c34ec19a0fdd3a6aa4f33 3 | size 26140 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_3_3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be9fee3d2c0f736a85eb5efb20fb2842c01086f0da16170e872f471f5cdf1419 3 | size 22950 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_4_3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bff81a3cf9b320cd0430cf658d1e06bac568ad27051bd88088782ed3d296137 3 | size 22986 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_5_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:890e3cd70df5f07777ca28aced2c44ae92c586ed73e57bfe842e3929003e6226 3 | size 22982 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_6_7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:377c2e638c089dd8085ababa870734b4156889277c44fe6c214b905ff1cf1ba0 3 | size 22986 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_7_8.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc2fa76b779d8cc87a6bf7590b31fcb03997dee99dc7186a4b6baadacded419f 3 | size 22980 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg/palette_8_5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e441f06dbda5151fbeb74ef718912f90aedd7d2046ed4a68876c15f6718ed19 3 | size 22980 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg_basket/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a20ae22abf915e17ecaad84bb525de5bb2ce09eb6cc1b09ee2ecbc459c017e7e 3 | size 20840 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg_basket/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:337c24cee4d863d6d9b4f8eb70ba8ecead6b373faa9bd1b7664abb66c0de5707 3 | size 20858 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg_basket/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3bd065fb1bfd995a3cc6272d4bb0339f36f3583702a084e637241769725cc20 3 | size 20866 4 | -------------------------------------------------------------------------------- /assets-source/objects/egg_basket/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04545e0793a8dc16fdc27177c980d2b6c8f38e0eb902a4094e1aacc5591c3576 3 | size 20828 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence_winter/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8b8c3584cb41240d2c5c259b99a10ea299e22aacfd04d1a5ae4c8fb5c7ac77c 3 | size 23681 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence_winter/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b3f3e610296b8ad0dd4959dab954a99968bf3077d1694306b8f195891cb0591 3 | size 25709 4 | -------------------------------------------------------------------------------- /assets-source/objects/fence_winter/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1223d892673036abd2147d0292883ad4d6440b0463d68b6cdd8e7a07e5f5245 3 | size 27877 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d4c0fe73f7360985b71a4776658f7e0965b41dd95ca5b919ae6bf377f45e30f 3 | size 54790 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbff9190e93ec8f0592cd95128e096f742ea515facb47d0205f8db7232e80dce 3 | size 47411 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:300e97c74bee053de880e2b7333112573a9cad0b77cab3337e50d6460d9dec2b 3 | size 30676 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67f663a237a5ba488703f13af1019c58aba8d610e4ffd46125fa35154f2bbd55 3 | size 30117 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38adf468c721ab0ea5806202e33622ff29db5b1a105f6c0b03bcdc8edbb34c8a 3 | size 26260 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b417d4c13f413e7682092f9cca9cebebdd74ef2a6b3d0467a4b17404ba1e45e5 3 | size 26065 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/patch7.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8ebe24973ab73a97d3ffabd05d880a7d95cf134c1b752a845ffd4d4b11815c0 3 | size 25041 4 | -------------------------------------------------------------------------------- /assets-source/objects/flower/pick.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4745a460d37de100674b2762c693bd8f16d42e163b6934792a1f85a22eaa4d7a 3 | size 22112 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/pine.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc0e1cf4338d02b2c340f43eee21957e5d7dd50c17cb3fe068d3e0ca39a1164a 3 | size 46817 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/sign.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9dbf1007dc5e2649a278fc63e51a307a990d3ac19509e16002aca645d5c97ef 3 | size 59391 4 | -------------------------------------------------------------------------------- /assets-source/objects/giftpile/tree.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b18a22b6d9910661d86b37a1c32eee1b476b89d5d2d0bbd6233f172eba4dfc29 3 | size 37514 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/big.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db1109992094513e616b9461e7f4856f72a7d48de261e16a00e0988ed7affeb7 3 | size 39202 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/medium.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:207d590bee3c1ac2cf96cf35a48c3d4f078ebe7d011eceb6c44e0b51981b6048 3 | size 31617 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/small.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e472ba9b4e33c6b2368e119e5ba21724605359c1827067f27bd0dc72cd4f2122 3 | size 27300 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/stick.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bdbd299ebcdc5427b5329aabb3f81e6b1ad24961b92de16da36fa0f100a0ebb 3 | size 27758 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_cart_back.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d4f0f0ce04f018c643d2489bcf8916134c3918e80545cdee940af8fbdff2292 3 | size 25408 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_cart_front.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56342bacca6a84c88014f95b986a701c6a42e1b3b6a62f9d15a77f5f66966fb5 3 | size 31221 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_closed.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac5d6e95b20b44b6f4023ce024f5cb93795fd090e8843270b1f24522da51ceb2 3 | size 27579 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_entrance.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e35137484d5d5ed555e63c4ec93219bcb34600f6b0ff86f987dc29b061333fa 3 | size 37194 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/h.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65752758af9fdb4c72f84d537fbd42d7ec076a4c61bc81196b47db20c62e0cbe 3 | size 24996 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/ne.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22e603555397612cefa6b7b686f7b5daae08145832695bc7db2ca1faaf25c37e 3 | size 27183 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/nse.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d7933cfb7e3472a1cda6c20873c223db206a9c2e10fff6e6f5dcaf0474a2d48 3 | size 26898 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/nsw.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8095f5e67f11a2b64a66573e2845c3b9571353cdb90f7eca364f09402f6e4f6 3 | size 26822 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/nw.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1afc871a62f3b14fb8786d7c865729b7de7b543bfaca6a10812ce64d88dbe74 3 | size 27079 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/nwe.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6758614719a0e8d8541b5d29b777e048cd411898e0b18a9ab4277518972bc5fa 3 | size 26831 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/se.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13bab5e059fcfda1067d373c33c46ebe3f5c66d3c2efe64bf6c5c259e4a0d852 3 | size 30241 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/sw.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c34809ca81a203070c0a4e17c2c230b6a26b08fddb9c1dc0ae242eccda10136 3 | size 26559 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/swe.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17dda6c86acd4df9e8f99b20797e2570ab418b501aaccd4531565b964248bfbe 3 | size 26315 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/v.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b70530f6ce8e809bee295c9b82bdd72046c5f8dbadb0035d00065c1390e1f0fa 3 | size 27512 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/shadow.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fcfdffabbe117686ff5f1f42dd8c0c5a94d4e895c617e1a2ced24148f08200e 3 | size 22508 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/shadow2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a60850db67ec26add6d16fb366d09d0367993ff7178dd470b9c12d161154308f 3 | size 22574 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/short_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a2534cb9cd7c9d2454c64a786f2290080093f64e826842595948dcc57c11887 3 | size 23427 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/short_2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07e8b6147e9022df13830a3f018af8069c3c981e25075546788213e5b5ddd286 3 | size 23519 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/short_3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e85c191a93aa42c05f5da51a2411e99328798313b5ece6d2076cf8d7c131457 3 | size 23253 4 | -------------------------------------------------------------------------------- /assets-source/objects/pumpkin/default.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:978daa96b6aba0f3ecbdec9465e4c19591e1882b1286059284c3b21737616a8b 3 | size 24579 4 | -------------------------------------------------------------------------------- /assets-source/objects/pumpkin/off.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce7e8854ec06ca39a0f27e9deda1115b2e8838cb1e2891ab772070aab29d762a 3 | size 21491 4 | -------------------------------------------------------------------------------- /assets-source/objects/sign_winter.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ae931f7a6a97f5ce58c6febdd575a3b799111d7f816ea95558f155366bf9bf5 3 | size 23193 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpile/big.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28834478d744cbfefe9c5a2759da519f49ec6bffeef9d969dd1cde827e929912 3 | size 32995 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpile/medium.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4798c8db2a64e4486d865e1f64db3d80f66a9e04c762820cfaf54d626868ebd 3 | size 27956 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpile/small.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f8193a1df1c9cd3091cbde003ab92969709bd55221d99f708476f409d96cdba 3 | size 23980 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpile/tinier.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1adf019b0aa62d978e3fbff716502210fee18dea166623905422b0739eaae2e8 3 | size 19870 4 | -------------------------------------------------------------------------------- /assets-source/objects/snowpile/tiny.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e188d11882562dedf1fd3db89e19c23c15af1f4e15c0f00c78698526b69ca120 3 | size 20323 4 | -------------------------------------------------------------------------------- /assets-source/objects/stalactite/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64065c75dca141f07b83bcf4a0a3b26d8ea813a8c444049b2da6483ed1df4942 3 | size 23038 4 | -------------------------------------------------------------------------------- /assets-source/objects/stalactite/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5690111a21ae548e960b128c86074937a0b538b2fe5be1e100b84846c7062967 3 | size 24532 4 | -------------------------------------------------------------------------------- /assets-source/objects/stalactite/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6be01784de005d1f0cd648d1f7154f79f6412167425ff98683e59a18cab6a965 3 | size 27084 4 | -------------------------------------------------------------------------------- /assets-source/objects/stone_wall/full.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21199ec70259a228f7452114895bc055f3e9b4466972e95b1d6e47bb716b73c6 3 | size 33379 4 | -------------------------------------------------------------------------------- /assets-source/objects/stone_wall/pole1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14429b53cabce770f695d5fdd90948f3628d6acd6c95dad1da74597cdcba8b3f 3 | size 2257 4 | -------------------------------------------------------------------------------- /assets-source/objects/tombstone/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b93b064bc9660675c6b414b2cb69c22d939c6de52df807f45966acc86c84dee4 3 | size 24654 4 | -------------------------------------------------------------------------------- /assets-source/objects/tombstone/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c5de2f59055dc761b0992c8d34fab38ffa44a1d8b9b1f7b63480ac3e6362abc 3 | size 26183 4 | -------------------------------------------------------------------------------- /assets-source/objects/toolbox/empty.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5180fe6a45d8c55f43869e821ec5407df3ce389a12aaccb85b1356de5cb69d55 3 | size 23887 4 | -------------------------------------------------------------------------------- /assets-source/objects/toolbox/full.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:234423c78ae021036d3d5438ef636b7762350012452d9cf311ab0d9117ecc5b7 3 | size 25969 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/base.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5227b69cd9059716c815b35e862fdf5bb14b4c238e18d20f7960ea17dd22fe7d 3 | size 51134 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/boop.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28fc3db63e6c9757a113126e1011563d64693472fd81fb118e6ba1d0aade876c 3 | size 254154 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/fly-bat.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:214572661341f0fd368b1028c78d5070ce3c8e009bef33ef5bb62e994fcbb14f 3 | size 57355 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/fly-bug.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28cbe6df39e0081cfa890d49ccf9f876587e2f68a99e2da38f8222593addb855 3 | size 45548 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/lie.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b66a96da9dbf0ccf4d1f32ead31804cd2d1055e6cd71cb5fa2b5d0e880a819c8 3 | size 170897 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/sit.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:985511d963a194569eea7db950c89f12507424d1c60e2af72c396c451a9ee2d2 3 | size 153732 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/trot.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6506b084d8ed453c20b977eccd0dcd0f5da785d90f640c8403a446f78e33f617 3 | size 272612 4 | -------------------------------------------------------------------------------- /assets-source/pony/back-legs-cms.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d3164cefcabd9592f89fe84179bc05ae276f78fe7c716e16e477a21b1e61997 3 | size 184547 4 | -------------------------------------------------------------------------------- /assets-source/pony/back-legs-hooves.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b7617a88e18d7f57914df507d7b86e1090300eedc239710016658ce3efc687b 3 | size 909856 4 | -------------------------------------------------------------------------------- /assets-source/pony/back-legs-sleeves.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33f8d0108a1e91363e993733e6ac50d584258031191de509274ca11eea8f95df 3 | size 382401 4 | -------------------------------------------------------------------------------- /assets-source/pony/ear-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04c1872fd06e5f2e21f8d55abbd43856f93a49680fb37406c07afd33955da2ab 3 | size 148829 4 | -------------------------------------------------------------------------------- /assets-source/pony/extra-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a5c4234e4de1d02e7138f863d48e5cb3df221ef1d7ae9c2862fe2bde65235e6 3 | size 316343 4 | -------------------------------------------------------------------------------- /assets-source/pony/face-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eeb74fd4d348a804db4d0855418b416176ae1db0dc87493e3ea22c56406d09dc 3 | size 233982 4 | -------------------------------------------------------------------------------- /assets-source/pony/head-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84d773094ba93c83ad152b8245c02155b2815a0247bd23ba0eec12932e69eaa1 3 | size 353282 4 | -------------------------------------------------------------------------------- /assets-source/pony/neck-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7e7681a9cdb67d9bbe1966ff6c7381c578f97edf2ae22a3b85bb5e967bcf9d2 3 | size 2300671 4 | -------------------------------------------------------------------------------- /assets-source/sprites-palette/grass.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94481ef11c675073e6043a8aa37a55650763254912ae91b83b3baee4cf743374 3 | size 1208 4 | -------------------------------------------------------------------------------- /assets-source/sprites-palette/nipple.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:846de8773474c1c5741f99c5aa2cf36b474c9078a965ad9c54525bb1e6475f03 3 | size 2808 4 | -------------------------------------------------------------------------------- /assets-source/sprites/firefly_light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:047ad7bb9a7e2ad9626008d5765430d3710e2c9047ffc9d4fad3acd9b8aa6b32 3 | size 1006 4 | -------------------------------------------------------------------------------- /assets-source/sprites/pumpkin_light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e232ff45d60facde0e279cbdb2842b7aab12f6f55618aec9d221fb46f2f3c2f7 3 | size 1049 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-grass-autumn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31a465a84b0f6bf15d8c52b65ebbffc83e22527f2f6d045466f323629f7d55b9 3 | size 27816 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-ice-autumn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d14fa6f76a24719641064ef3764bb0541345fc616703c708d942b4f0d66ec53e 3 | size 15553 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-ice-winter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c977e0786fa92f9e0e57264e59c63706cb20a1a7f100734a009fd3c33c30fc5 3 | size 15573 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-stone-cave.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db5b4b9b13fb41f3ad75c47b28c057908890de76e6090693d1e5a1dd55f3d01e 3 | size 23037 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-1-cave.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1216778c6462eadf2d8ee9e380ad40c1cde058993550fded7847c899de0cace 3 | size 11376 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/palette_1_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac849f6b9fb0be65312609f781ef1a2d82df5fca6b77ab812bd87c59fb7af0f5 3 | size 91568 4 | -------------------------------------------------------------------------------- /assets-source/trees/pine/palette_2_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b03947a2bbeedd75f92df17f4171557f643ab8bbb4cad5241438b8e5ad3a9107 3 | size 87260 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/palette_1_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:921935d9889602f450089c9c397cdb5a907b4930a568db42050db8a47c7da005 3 | size 94430 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/palette_2_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e0ba0caa0401b5e4edd92ca7b65de16a20efe7bc9bfc7e89e267bc68efd677e 3 | size 124784 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/palette_3_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f24fb644839d87b301777a4e469057def253b807282b1dde133ffb22b8d45aa 3 | size 118186 4 | -------------------------------------------------------------------------------- /assets-source/trees/tree/palette_4_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27f22367af47de4805d994f0ab2c9665cc8010e55a49db43b31caf89669f5048 3 | size 122826 4 | -------------------------------------------------------------------------------- /favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5036fb137fd1cc200158fe9c219e10dc8bcffe1c98289400f42df060486acfa4 3 | size 1033 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-right-think.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f44f1c8eaa64ecdd2eb1b7060b7310aa8fdbbab2424c77b831f9e80bf2066a1e 3 | size 384 4 | -------------------------------------------------------------------------------- /src/tests/graphics/party-announcement.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5584a05b7e0338536fe61ea642c919a85fe4b3e9544bb624b1a01ee83016d2f3 3 | size 349 4 | -------------------------------------------------------------------------------- /src/tests/pony/hair-in-front-of-wing.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc245a88d6226fd3c604c772039c9791d4cf8660f0ade8cd84f2f24c8f380f42 3 | size 1337 4 | -------------------------------------------------------------------------------- /assets-source/animations/ghost1_hooves.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:740d3aa7933c0a7ac2b94106a733075927158bf1f726ea6801a14fbfcfa6ee7c 3 | size 158016 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_crystal/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d02827eaa7a80804cfba6b589ad4456e3fb612625f3c3cad88de55500af2c984 3 | size 29180 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_crystal/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49331e6098f3b536169f049ef0c28dad316aab7de1ac68d4140bfb3624aefbbe 3 | size 30479 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_crystal/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38ce3a138c8deedae4ec51b7ef69f55a4f26827eaacd56427438d62019cb44f7 3 | size 28806 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/10.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5055472c06fce39412224b32b55c2b08d9f33e6f973ffd732728c01116c8a883 3 | size 27292 4 | -------------------------------------------------------------------------------- /assets-source/animations/water_rock/11.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f5f0c8c609b3b942901c43e1cd3975dcd6d679772414e798eca39c839980b7b 3 | size 32080 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_sleep1_flip.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16d1108deb8c86eb138a4db2080b3373b404ba347564ef194c8244e66cbd5f27 3 | size 88760 4 | -------------------------------------------------------------------------------- /assets-source/emotes/emote_sleep2_flip.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e09e50199633923b152833c2010ac32a6f7227bb6d65e816130c3517f934b6c0 3 | size 117116 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystal_lantern.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62efa6a0dc2666778851cd6a812407c54d48359feed49393734adc0f3fbd5efa 3 | size 1021 4 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_held.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab652d7063a9f1b01c34e029db431ee75c648f63d93b0a5e29d0aa1d52e0be71 3 | size 2837 4 | -------------------------------------------------------------------------------- /assets-source/objects/apple/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0529e1478a038b6ac0d444310321821f03c1d90bfa8b36833f427c35e76226a1 3 | size 26276 4 | -------------------------------------------------------------------------------- /assets-source/objects/crate/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf621736b2d7b5a99b6a69bafc77769525692fe1e5d660d9af0055d0111f545c 3 | size 30572 4 | -------------------------------------------------------------------------------- /assets-source/objects/crystals/cart_pile.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8076d069cb6f49fc8c75fbcc595ab284d554e31eaae5ad59a9ebd635ed2e0897 3 | size 27038 4 | -------------------------------------------------------------------------------- /assets-source/objects/cushion/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cc268e84150aecfc13aee693f391289575bca274a0ed712ab7e540171c31e63 3 | size 25664 4 | -------------------------------------------------------------------------------- /assets-source/objects/cushion/palette_2_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b218b8fa711c46f74716feda49e19c48521f1ed214b3be698df3b8ac5052286 3 | size 25672 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/down_left.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a9e2c9f1422130625e2954b49ceb6aebf693dbbdd489a0c0a7119f620be32b4 3 | size 22998 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/down_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b88df09bfac66d746c0cafd9ad98fcf21cd442f0ca5babf4b68c5990d91fc1e1 3 | size 22992 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/left_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da48f74f21dbdcc9874f187a44fde113f0c965a1ad2a7bbf6ed7871488659876 3 | size 48092 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/pole_3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e64c61b3310999557f57515fab32338f8c0f7c574cd7293b456396b50fefaf4 3 | size 28866 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/pole_4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfd5b64cd3e6a4876350e4c2c1066b7fe668df53546beba68f904200070bea31 3 | size 26386 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/pole_5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:505497209baf009e6d7eab5b5e6202514d5720fe3b2d91b8c0e40a3b355d4708 3 | size 27012 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/up_left.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a34618c0c5846a35d3f63486c8e47b0f532e2a6ead4dc9a2059849eddce1d738 3 | size 22686 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/up_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a596cf1d99278418f45c36a51e49cc23eae2838c76c8cd3677689c03e7e85782 3 | size 22682 4 | -------------------------------------------------------------------------------- /assets-source/objects/gift/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec90010ca1464ac84b08fb27ae4cc88d2b1fe88c89a94463315edff0432296e1 3 | size 23818 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d2d9404fac998df7e64afb0990709b84f42e7dde8773bfe78fc1c45bd544d45 3 | size 24708 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/palette_2_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97a12514b61ef7a607dd1183a381e6c60c047bd65c1ae3d438bb25f6b23f2a18 3 | size 27836 4 | -------------------------------------------------------------------------------- /assets-source/objects/gifts/palette_3_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd72e82a639c2ce3a068e2f4b887dab1d1564ba62615a55004da59e7feef3254 3 | size 24721 4 | -------------------------------------------------------------------------------- /assets-source/objects/grapes/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1190bba6f707da86aeeed50bc2977d5d28a64a0f5423c1f804353eb93aa0f613 3 | size 22992 4 | -------------------------------------------------------------------------------- /assets-source/objects/jacko_lantern/off.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad594d836ef40f889a319fe39fdf1994941d24d08f8f0abd2faa60c9601e81d1 3 | size 23268 4 | -------------------------------------------------------------------------------- /assets-source/objects/jacko_lantern/on.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7c2f67e5cddc1b88d9c1f069c18c47477fb40fd19348bdc46c9261b4c8ff50a 3 | size 23444 4 | -------------------------------------------------------------------------------- /assets-source/objects/large_leafed_bush/1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1a5fbe009f8f10fe07d5e74c05471a63f8885c57d5ea67fa73375fd94aa7e17 3 | size 32454 4 | -------------------------------------------------------------------------------- /assets-source/objects/large_leafed_bush/2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9831d0bda89d4018ca820802241a0c494d5ef616afacab634d331e62fa736995 3 | size 33308 4 | -------------------------------------------------------------------------------- /assets-source/objects/large_leafed_bush/3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6adc736e126ca4277d2eed887f35bea325cd15938613cf60a829357d2eca1ec 3 | size 29949 4 | -------------------------------------------------------------------------------- /assets-source/objects/large_leafed_bush/4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da9d81adec3ed404ce9687c38b85bce6729fa481078a842929414813be3529e6 3 | size 29949 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/palette_1_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b4e094a989ecb99a1e6bde7c0bcd11c0d86d2b1c4c6114546f23895818ee9ce 3 | size 23282 4 | -------------------------------------------------------------------------------- /assets-source/objects/leaf/palette_2_6.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3520984505318801d3b0d7ebd4c6cb4f0e42dc2d89b6a8d7af4b2d7032ad72df 3 | size 23286 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/bigstick.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5a9b90da6be2c2dc1b625be655d9f73c10d080a60ef109decd1869b309e7da1 3 | size 39839 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/mediumalt.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd723bcca5aa9ae1864596018856f9a873f6339b1e193c659cdd50991fefafd8 3 | size 30956 4 | -------------------------------------------------------------------------------- /assets-source/objects/lemon/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24645806d3f5dadade654b3d5002e1f45812d4305259da0c50db00324ccdf53a 3 | size 22786 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rail_fade_up.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a5c0a222e109d3c2f43bff0da54b3bb955c1abfab3e30cc79890d32e44cc709 3 | size 27408 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/end_left.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9debd451b675265226ff888abf08b7f60a6b8c0805793a7d3d97c02780bad201 3 | size 31001 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/end_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcc901804e77361566dfcb923bc3c27ea1498ab722e555c6523b4b6d21c5dc1d 3 | size 30469 4 | -------------------------------------------------------------------------------- /assets-source/objects/mine_rails/end_top.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21da209a2aeae5b18a831db2851446f6ef7c33b8a58751e165e4534c878600de 3 | size 25889 4 | -------------------------------------------------------------------------------- /assets-source/objects/picture/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df99f799115dd7080c75e6c293eac014628c33f7aa3cefb214902fb2c18cb61e 3 | size 27494 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df586af2c4fe5b53b579d20f41ed871ff6552f45663ac86b5c8ee98a7812ed7a 3 | size 26983 4 | -------------------------------------------------------------------------------- /assets-source/objects/plank/shadow_short.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:449a5e54c39e4e9060ef78be266e27660efdc95195b6ac5da3791f770f89d600 3 | size 22556 4 | -------------------------------------------------------------------------------- /assets-source/objects/rock/palette_1_1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffa270dec3ea9d350c723c1024ae8bd452334fa537fb7016fd1b0f7df926bd6e 3 | size 24804 4 | -------------------------------------------------------------------------------- /assets-source/objects/stone_wall/vertical1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4590849194d04adbb3ada217db7a76effc34ec3921e311a0fd41ab224328f592 3 | size 24173 4 | -------------------------------------------------------------------------------- /assets-source/objects/wall_h_placeholder.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42d0382b8f52a01016d464077ecee73e907419b4d6e2454e71a7b10c8aef5f2a 3 | size 22662 4 | -------------------------------------------------------------------------------- /assets-source/objects/wall_v_placeholder.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7b74abeb61a0e98e79a6fe49c87e7c9eeed1a7234a0eba3ae4cabfdc929579d 3 | size 23382 4 | -------------------------------------------------------------------------------- /assets-source/objects/wooden_fence/pole1.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b16d488da347de02c155d5c8d2e6cab1372417f0c186600cf36a7f3726287b7 3 | size 25094 4 | -------------------------------------------------------------------------------- /assets-source/objects/wooden_fence/pole2.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a26015b7894826e7c26402c0867c53497eba4003c28666ae2e7613c40f964235 3 | size 23882 4 | -------------------------------------------------------------------------------- /assets-source/objects/wooden_fence/pole3.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc275543afa6f1b991e74b6a1afbc903780bbea7f5d386d5abe150e3a7c24b0b 3 | size 20716 4 | -------------------------------------------------------------------------------- /assets-source/objects/wooden_fence/pole4.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:956a67f9fe9524c939420048d5d31c46e973a3b67c391d943cc3b0e00aa274bf 3 | size 23886 4 | -------------------------------------------------------------------------------- /assets-source/objects/wooden_fence/pole5.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78f5f985b76accd442aa7e5e38423c71d9adc5e7384eb146b65262106046d015 3 | size 20726 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/fly-griffon.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d91e76d684c3bffea8b312f5c89587ba34dd823ea88446de09efc9f6b8b92e1a 3 | size 65758 4 | -------------------------------------------------------------------------------- /assets-source/pony/animations/fly-pegasus.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16c806b8c158c1efc2e0a8396f778ee2c34a1d1a8e9d10665cd76ec7ad374ddb 3 | size 56134 4 | -------------------------------------------------------------------------------- /assets-source/pony/back-legs-accessories.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f123e73905df058dfae6c0036bd9a44ce6f971b0da9ce92bd3fb7c2c91b9b73e 3 | size 647718 4 | -------------------------------------------------------------------------------- /assets-source/pony/body-back-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21e850f2342bce3d9e675e589e20303f1708a0768e507bd4769dcf4f8eac2131 3 | size 772940 4 | -------------------------------------------------------------------------------- /assets-source/pony/body-chest-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:637178eaf8c6b6441fc8c0db5ac7912548c2382407b3bd66847c9b3e786e2f56 3 | size 820877 4 | -------------------------------------------------------------------------------- /assets-source/pony/body-waist-accessory.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d1b5a263717972bcfa768aaeba8fb728f152a2333f2a9ba6a24e9bc51d10594 3 | size 622532 4 | -------------------------------------------------------------------------------- /assets-source/pony/front-legs-hooves.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06a911982909709dafeb59b5d9bf8fc9878566b87272cc0f3b5b2919cc76c247 3 | size 2151353 4 | -------------------------------------------------------------------------------- /assets-source/pony/front-legs-sleeves.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d83a10604fcd61df1bfeabd0644850487f9947613e92789653103e7ba5e8e12 3 | size 1889763 4 | -------------------------------------------------------------------------------- /assets-source/sprites-animations/cat_light.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b9b9c99ee53929216d0e521f736d2090d509a8459999211e7e5c26e091ca291 3 | size 51604 4 | -------------------------------------------------------------------------------- /assets-source/sprites-palette/nipple_alt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c5cbed682493a573a0a4e2d3a1e20c98fc16d15d383d88da3d742753f507564 3 | size 2820 4 | -------------------------------------------------------------------------------- /assets-source/sprites/dirt_ice_heightmap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b423d07fffb82e20c22c3d563d89ae4bc1f685e19ef3e58f254e696a014c1513 3 | size 7735 4 | -------------------------------------------------------------------------------- /assets-source/sprites/dirt_water_heightmap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:695794a251091c95c1aa87e4c6d58a082b885a198a811e6b69fb3d176607fab5 3 | size 8048 4 | -------------------------------------------------------------------------------- /assets-source/sprites/jacko_lantern_light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69ab59238c7d5894d73788f72a3cdcfb7a8d553d3468548867c3c822ce25c70e 3 | size 992 4 | -------------------------------------------------------------------------------- /assets-source/tiles/cliffs-grass-autumn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be8505483427cac5deb65f3c468cac33eed458a30f26ffdb8cefe126338e144e 3 | size 9528 4 | -------------------------------------------------------------------------------- /assets-source/tiles/cliffs-grass-winter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fadd4db0e0217210d1b486c61a3a2e23c95ee8b6201c2549cc86cb7ef50a0b20 3 | size 9337 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-1-autumn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2ee63d31a88ccd5b41a40fa5d51d54dba6eff9c9484f1c0666e440d631f337f 3 | size 11424 4 | -------------------------------------------------------------------------------- /assets-source/tiles/dirt-water-1-winter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d6faa90566f6534361124da0299a6dc68043f66f052680782e9a3e8598ff4e5 3 | size 11247 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-right-nipple-chat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8095415abca885a149692ace7cac516fa9ee772e364d7398f3ca1bebb3625b25 3 | size 348 4 | -------------------------------------------------------------------------------- /src/tests/graphics/move-right-nipple-think.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d88bf0f851ca19ccb6eb29ff5c6240d52c4ea0a5b797f45f928f887867c084b2 3 | size 369 4 | -------------------------------------------------------------------------------- /src/tests/pony/face-extra-holding-letter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ab231254a77ef0c1eece33c9c319a34852305f85759e31bc0c1b1fe302e6e14 3 | size 1827 4 | -------------------------------------------------------------------------------- /src/tests/pony/hair-behind-neck-accessory.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:567f96933b2e4baf8d10d13a38ba5243d0afdefedd72f696d2c934d133c5c627 3 | size 1494 4 | -------------------------------------------------------------------------------- /src/tests/pony/sitting-with-skirt-and-socks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7e32c7cfa1127ddd1701aeee1a623774fc49dfdb08485102ac928ae33d9b76a 3 | size 1190 4 | -------------------------------------------------------------------------------- /src/ts/components/admin/shared/events-table/events-table.scss: -------------------------------------------------------------------------------- 1 | .event-desc { 2 | word-wrap: break-word; 3 | max-width: 500px; 4 | } 5 | 6 | .col-actions { 7 | width: 90px; 8 | } 9 | -------------------------------------------------------------------------------- /src/ts/components/tools/shared/tools-xy/tools-xy.scss: -------------------------------------------------------------------------------- 1 | .tools-xy { 2 | width: 80px; 3 | 4 | .btn { 5 | padding: 0; 6 | font-size: 10px; 7 | width: 19px; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets-source/lights/light_crystals_cart_pile.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d8b562223f9befe5ad145eaec4a6511b5fc07a46425d21bfddb9694f0fa1347 3 | size 177 4 | -------------------------------------------------------------------------------- /assets-source/objects/carrot/palette_1_hold.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dbdce661f6f0c14be5d6462359e3aa9c47ea518bbd0e39b1295528a5e6a6f8c 3 | size 23336 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/shadow_left.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36682baef8a0f3c74a01502159e226fefe3d1f17f6605be031e5839948539720 3 | size 22976 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/shadow_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ddb9a41ca181b85bb6c34745acb2a3dd073b30922c12dd5a69bc3a67c1ecc97 3 | size 23000 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/shadow_up_left.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efb6cf6700677b2b476a6655d5efa7bbf4803f9a7dd4e842613e2f4f9bdb147f 3 | size 22226 4 | -------------------------------------------------------------------------------- /assets-source/objects/direction/shadow_up_right.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b01dd55066bb3eb3f59d633ea449ccd5e8f5595cdc8508e2e077e45799c25a2 3 | size 22226 4 | -------------------------------------------------------------------------------- /assets-source/objects/leafpile/palette_1_stick.psd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10b064f1e7ba3bb3088e854436965b6d11fb204109bec9923fcc943f1f384ac8 3 | size 27692 4 | --------------------------------------------------------------------------------