mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* removing duplicate keys * adding chair assets and wiring them to customize screen * adding customization data for new wheelchair types * removing an unused locale key and moving the code style override closer to the affected area * explicitly re-enabilng linting rule * adding button-sized chair assets * updating assets to new resolution * moving chair keys into component data
20 lines
375 B
JavaScript
20 lines
375 B
JavaScript
import prefill from './prefill.js';
|
|
|
|
export default prefill({
|
|
none: {},
|
|
black: {},
|
|
blue: {},
|
|
green: {},
|
|
pink: {},
|
|
red: {},
|
|
yellow: {},
|
|
/* eslint-disable quote-props */
|
|
'handleless_black': {},
|
|
'handleless_blue': {},
|
|
'handleless_green': {},
|
|
'handleless_pink': {},
|
|
'handleless_red': {},
|
|
'handleless_yellow': {},
|
|
/* eslint-enable quote-props */
|
|
});
|