1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 21:05:54 +02:00
This commit is contained in:
syuilo
2026-04-12 11:29:30 +09:00
parent 87828dc0ad
commit fa8bdf55be
4 changed files with 23 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ import { router } from './objects/router.js';
import { siphon } from './objects/siphon.js';
import { snakeplant } from './objects/snakeplant.js';
import { speaker } from './objects/speaker.js';
import { sprayer } from './objects/sprayer.js';
import { steelRack } from './objects/steelRack.js';
import { tabletopCalendar } from './objects/tabletopCalendar.js';
import { tabletopDigitalClock } from './objects/tabletopDigitalClock.js';
@@ -141,6 +142,7 @@ export const OBJECT_DEFS = [
siphon,
snakeplant,
speaker,
sprayer,
steelRack,
tabletopCalendar,
tabletopDigitalClock,

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const sprayer = defineObject({
id: 'sprayer',
name: '霧吹き',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});