@weppy/roblox-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +39 -0
- package/CHANGELOG.md +37 -0
- package/LICENSE +53 -0
- package/README.md +162 -0
- package/assets/screenshots/connection_guide.png +3 -0
- package/assets/screenshots/connection_popup.png +3 -0
- package/assets/screenshots/plugin_main.png +3 -0
- package/assets/screenshots/settings.png +3 -0
- package/dist/http-bridge.d.ts +65 -0
- package/dist/http-bridge.d.ts.map +1 -0
- package/dist/http-bridge.js +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/server.d.ts +13 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +1 -0
- package/dist/tools/asset-tools.d.ts +10 -0
- package/dist/tools/asset-tools.d.ts.map +1 -0
- package/dist/tools/asset-tools.js +1 -0
- package/dist/tools/bulk-tools.d.ts +11 -0
- package/dist/tools/bulk-tools.d.ts.map +1 -0
- package/dist/tools/bulk-tools.js +1 -0
- package/dist/tools/camera-tools.d.ts +5 -0
- package/dist/tools/camera-tools.d.ts.map +1 -0
- package/dist/tools/camera-tools.js +1 -0
- package/dist/tools/connection-tools.d.ts +5 -0
- package/dist/tools/connection-tools.d.ts.map +1 -0
- package/dist/tools/connection-tools.js +1 -0
- package/dist/tools/environment-tools.d.ts +8 -0
- package/dist/tools/environment-tools.d.ts.map +1 -0
- package/dist/tools/environment-tools.js +1 -0
- package/dist/tools/index.d.ts +21 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +1 -0
- package/dist/tools/instance-tools.d.ts +16 -0
- package/dist/tools/instance-tools.d.ts.map +1 -0
- package/dist/tools/instance-tools.js +1 -0
- package/dist/tools/log-tools.d.ts +6 -0
- package/dist/tools/log-tools.d.ts.map +1 -0
- package/dist/tools/log-tools.js +1 -0
- package/dist/tools/property-tools.d.ts +13 -0
- package/dist/tools/property-tools.d.ts.map +1 -0
- package/dist/tools/property-tools.js +1 -0
- package/dist/tools/raycast-tools.d.ts +11 -0
- package/dist/tools/raycast-tools.d.ts.map +1 -0
- package/dist/tools/raycast-tools.js +1 -0
- package/dist/tools/script-tools.d.ts +13 -0
- package/dist/tools/script-tools.d.ts.map +1 -0
- package/dist/tools/script-tools.js +1 -0
- package/dist/tools/search-tools.d.ts +11 -0
- package/dist/tools/search-tools.d.ts.map +1 -0
- package/dist/tools/search-tools.js +1 -0
- package/dist/tools/selection-tools.d.ts +16 -0
- package/dist/tools/selection-tools.d.ts.map +1 -0
- package/dist/tools/selection-tools.js +1 -0
- package/dist/tools/spatial-tools.d.ts +8 -0
- package/dist/tools/spatial-tools.d.ts.map +1 -0
- package/dist/tools/spatial-tools.js +1 -0
- package/dist/tools/state-tools.d.ts +12 -0
- package/dist/tools/state-tools.d.ts.map +1 -0
- package/dist/tools/state-tools.js +1 -0
- package/dist/tools/tag-tools.d.ts +8 -0
- package/dist/tools/tag-tools.d.ts.map +1 -0
- package/dist/tools/tag-tools.js +1 -0
- package/dist/tools/terrain-tools.d.ts +15 -0
- package/dist/tools/terrain-tools.d.ts.map +1 -0
- package/dist/tools/terrain-tools.js +1 -0
- package/dist/tools/visualization-tools.d.ts +9 -0
- package/dist/tools/visualization-tools.d.ts.map +1 -0
- package/dist/tools/visualization-tools.js +1 -0
- package/dist/types/index.d.ts +143 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +1 -0
- package/dist/utils/logger.d.ts +16 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +1 -0
- package/dist/utils/quota-checker.d.ts +46 -0
- package/dist/utils/quota-checker.d.ts.map +1 -0
- package/dist/utils/quota-checker.js +1 -0
- package/dist/utils/type-converter.d.ts +33 -0
- package/dist/utils/type-converter.d.ts.map +1 -0
- package/dist/utils/type-converter.js +1 -0
- package/dist/utils/validation.d.ts +17 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +1 -0
- package/docs/ko/README.md +174 -0
- package/docs/ko/faq.md +188 -0
- package/docs/ko/installation/claude-code.md +110 -0
- package/docs/ko/installation/claude-desktop.md +145 -0
- package/docs/ko/installation/codex-cli.md +120 -0
- package/docs/ko/installation/cursor.md +122 -0
- package/docs/ko/installation/gemini-cli.md +136 -0
- package/docs/ko/installation/other-clients.md +180 -0
- package/docs/ko/installation/plugin.md +98 -0
- package/docs/ko/tools/overview.md +270 -0
- package/package.json +46 -0
- package/plugins/weppy-roblox-mcp/.claude-plugin/plugin.json +53 -0
- package/plugins/weppy-roblox-mcp/agents/roblox-engineer.md +65 -0
- package/plugins/weppy-roblox-mcp/dist/dist/http-bridge.d.ts +65 -0
- package/plugins/weppy-roblox-mcp/dist/dist/http-bridge.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/http-bridge.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/index.d.ts +3 -0
- package/plugins/weppy-roblox-mcp/dist/dist/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/index.js +2 -0
- package/plugins/weppy-roblox-mcp/dist/dist/server.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/dist/server.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/server.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/asset-tools.d.ts +10 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/asset-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/asset-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/bulk-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/bulk-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/bulk-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/camera-tools.d.ts +5 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/camera-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/camera-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/connection-tools.d.ts +5 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/connection-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/connection-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/environment-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/environment-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/environment-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/index.d.ts +21 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/index.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/instance-tools.d.ts +16 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/instance-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/instance-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/log-tools.d.ts +6 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/log-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/log-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/property-tools.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/property-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/property-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/raycast-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/raycast-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/raycast-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/script-tools.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/script-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/script-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/search-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/search-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/search-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/selection-tools.d.ts +16 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/selection-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/selection-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/spatial-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/spatial-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/spatial-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/state-tools.d.ts +12 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/state-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/state-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/tag-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/tag-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/tag-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/terrain-tools.d.ts +15 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/terrain-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/terrain-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/visualization-tools.d.ts +9 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/visualization-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/tools/visualization-tools.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/types/index.d.ts +143 -0
- package/plugins/weppy-roblox-mcp/dist/dist/types/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/types/index.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/logger.d.ts +16 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/logger.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/logger.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/quota-checker.d.ts +46 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/quota-checker.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/quota-checker.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/type-converter.d.ts +33 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/type-converter.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/type-converter.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/validation.d.ts +17 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/validation.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/dist/utils/validation.js +1 -0
- package/plugins/weppy-roblox-mcp/dist/http-bridge.d.ts +45 -0
- package/plugins/weppy-roblox-mcp/dist/http-bridge.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/http-bridge.js +434 -0
- package/plugins/weppy-roblox-mcp/dist/http-bridge.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/index.d.ts +3 -0
- package/plugins/weppy-roblox-mcp/dist/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/index.js +59 -0
- package/plugins/weppy-roblox-mcp/dist/index.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/server.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/server.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/server.js +260 -0
- package/plugins/weppy-roblox-mcp/dist/server.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/asset-tools.d.ts +10 -0
- package/plugins/weppy-roblox-mcp/dist/tools/asset-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/asset-tools.js +127 -0
- package/plugins/weppy-roblox-mcp/dist/tools/asset-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/bulk-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/tools/bulk-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/bulk-tools.js +225 -0
- package/plugins/weppy-roblox-mcp/dist/tools/bulk-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/environment-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/tools/environment-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/environment-tools.js +93 -0
- package/plugins/weppy-roblox-mcp/dist/tools/environment-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/index.d.ts +18 -0
- package/plugins/weppy-roblox-mcp/dist/tools/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/index.js +59 -0
- package/plugins/weppy-roblox-mcp/dist/tools/index.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/instance-tools.d.ts +15 -0
- package/plugins/weppy-roblox-mcp/dist/tools/instance-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/instance-tools.js +252 -0
- package/plugins/weppy-roblox-mcp/dist/tools/instance-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/log-tools.d.ts +6 -0
- package/plugins/weppy-roblox-mcp/dist/tools/log-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/log-tools.js +53 -0
- package/plugins/weppy-roblox-mcp/dist/tools/log-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/property-tools.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/tools/property-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/property-tools.js +213 -0
- package/plugins/weppy-roblox-mcp/dist/tools/property-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/raycast-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/tools/raycast-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/raycast-tools.js +420 -0
- package/plugins/weppy-roblox-mcp/dist/tools/raycast-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/script-tools.d.ts +13 -0
- package/plugins/weppy-roblox-mcp/dist/tools/script-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/script-tools.js +229 -0
- package/plugins/weppy-roblox-mcp/dist/tools/script-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/search-tools.d.ts +11 -0
- package/plugins/weppy-roblox-mcp/dist/tools/search-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/search-tools.js +196 -0
- package/plugins/weppy-roblox-mcp/dist/tools/search-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/selection-tools.d.ts +16 -0
- package/plugins/weppy-roblox-mcp/dist/tools/selection-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/selection-tools.js +185 -0
- package/plugins/weppy-roblox-mcp/dist/tools/selection-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/spatial-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/tools/spatial-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/spatial-tools.js +155 -0
- package/plugins/weppy-roblox-mcp/dist/tools/spatial-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/state-tools.d.ts +153 -0
- package/plugins/weppy-roblox-mcp/dist/tools/state-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/state-tools.js +481 -0
- package/plugins/weppy-roblox-mcp/dist/tools/state-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/tag-tools.d.ts +8 -0
- package/plugins/weppy-roblox-mcp/dist/tools/tag-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/tag-tools.js +99 -0
- package/plugins/weppy-roblox-mcp/dist/tools/tag-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/terrain-tools.d.ts +15 -0
- package/plugins/weppy-roblox-mcp/dist/tools/terrain-tools.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/tools/terrain-tools.js +549 -0
- package/plugins/weppy-roblox-mcp/dist/tools/terrain-tools.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/types/index.d.ts +111 -0
- package/plugins/weppy-roblox-mcp/dist/types/index.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/types/index.js +8 -0
- package/plugins/weppy-roblox-mcp/dist/types/index.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/logger.d.ts +16 -0
- package/plugins/weppy-roblox-mcp/dist/utils/logger.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/logger.js +87 -0
- package/plugins/weppy-roblox-mcp/dist/utils/logger.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/type-converter.d.ts +33 -0
- package/plugins/weppy-roblox-mcp/dist/utils/type-converter.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/type-converter.js +203 -0
- package/plugins/weppy-roblox-mcp/dist/utils/type-converter.js.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/validation.d.ts +17 -0
- package/plugins/weppy-roblox-mcp/dist/utils/validation.d.ts.map +1 -0
- package/plugins/weppy-roblox-mcp/dist/utils/validation.js +26 -0
- package/plugins/weppy-roblox-mcp/dist/utils/validation.js.map +1 -0
- package/plugins/weppy-roblox-mcp/package.json +43 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-game-dev/SKILL.md +548 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-mcp-guide/SKILL.md +680 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-mcp-guide/scripts/check-mcp.sh +86 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-planner/SKILL.md +588 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-planner/scripts/verify-plan.sh +134 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/SKILL.md +389 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/post-verify.sh +160 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/pre-check.sh +304 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-sync/scripts/update-metadata.sh +27 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-task-tracker/SKILL.md +349 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-task-tracker/scripts/validate.sh +28 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/SKILL.md +244 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/effects.json +118 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/items.json +169 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/maps/maps.json +763 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/maps/sources/decorations.json +137 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/maps/sources/standalone-maps.json +331 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/maps/sources/terrain-presets.json +272 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/monsters.json +132 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/npcs.json +50 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/weapons.json +140 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/references/animations.json +40 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/references/rpg-balance.json +236 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/references/rpg.md +304 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/references/terrain-generation.json +192 -0
- package/plugins/weppy-roblox-mcp/skills/roblox-templates/samples/SpawnConfig.luau +152 -0
- package/roblox-plugin/WeppyRobloxMCP-Free.rbxm +3 -0
package/plugins/weppy-roblox-mcp/skills/roblox-templates/assets/maps/sources/terrain-presets.json
ADDED
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"category": "terrain-presets",
|
|
4
|
+
"description": "Terrain generation presets using terrain_generate with Perlin noise",
|
|
5
|
+
"lastUpdated": "2026-01-30",
|
|
6
|
+
"totalPresets": 3,
|
|
7
|
+
"version": "3.0.0",
|
|
8
|
+
"usage": "Use terrain_generate tool with generation parameters for natural terrain",
|
|
9
|
+
"defaultGeneration": {
|
|
10
|
+
"description": "Recommended base values for natural-looking terrain",
|
|
11
|
+
"baseHeight": 40,
|
|
12
|
+
"amplitude": 30,
|
|
13
|
+
"frequency": 0.005,
|
|
14
|
+
"layers": [
|
|
15
|
+
{ "material": "Water", "maxHeight": 15 },
|
|
16
|
+
{ "material": "Sand", "maxHeight": 22 },
|
|
17
|
+
{ "material": "LeafyGrass", "maxHeight": 50 },
|
|
18
|
+
{ "material": "Ground", "maxHeight": 65 },
|
|
19
|
+
{ "material": "Rock", "maxHeight": 100 }
|
|
20
|
+
],
|
|
21
|
+
"notes": {
|
|
22
|
+
"baseHeight": "Center height of terrain. Lower = more water, Higher = more land",
|
|
23
|
+
"amplitude": "Height variation. Lower = flatter, Higher = more dramatic",
|
|
24
|
+
"frequency": "Noise scale. Lower = smoother/larger features, Higher = rougher/smaller features",
|
|
25
|
+
"layers": "Material by height. Order from lowest maxHeight to highest"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"presets": {
|
|
30
|
+
"forest_clearing": {
|
|
31
|
+
"name": "Forest Clearing",
|
|
32
|
+
"nameKo": "숲 속 빈터",
|
|
33
|
+
"theme": "forest",
|
|
34
|
+
"difficulty": "beginner",
|
|
35
|
+
"description": "Natural forest terrain with gentle hills, grass plains, and scattered water features",
|
|
36
|
+
"size": {
|
|
37
|
+
"base": 512,
|
|
38
|
+
"variants": [256, 512, 1024]
|
|
39
|
+
},
|
|
40
|
+
"bounds": {
|
|
41
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
42
|
+
"max": { "x": 256, "y": 80, "z": 256 }
|
|
43
|
+
},
|
|
44
|
+
"generation": {
|
|
45
|
+
"baseHeight": { "base": 25, "variance": 3 },
|
|
46
|
+
"amplitude": { "base": 18, "variance": 4 },
|
|
47
|
+
"frequency": { "base": 0.008, "variance": 0.002 },
|
|
48
|
+
"layers": [
|
|
49
|
+
{ "material": "Water", "maxHeight": 10 },
|
|
50
|
+
{ "material": "Sand", "maxHeight": 15 },
|
|
51
|
+
{ "material": "LeafyGrass", "maxHeight": 30 },
|
|
52
|
+
{ "material": "Ground", "maxHeight": 38 },
|
|
53
|
+
{ "material": "Rock", "maxHeight": 80 }
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
"spawnConfig": {
|
|
57
|
+
"count": 3,
|
|
58
|
+
"minSpacing": 50,
|
|
59
|
+
"preferOutdoor": true,
|
|
60
|
+
"heightOffset": 3,
|
|
61
|
+
"fallbackSpawns": [
|
|
62
|
+
{ "x": 0, "y": 28, "z": 0 },
|
|
63
|
+
{ "x": 80, "y": 28, "z": -60 },
|
|
64
|
+
{ "x": -60, "y": 28, "z": 80 }
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"objectSpawnConfig": {
|
|
68
|
+
"count": 5,
|
|
69
|
+
"minSpacing": 40,
|
|
70
|
+
"heightOffset": 2
|
|
71
|
+
},
|
|
72
|
+
"focusView": {
|
|
73
|
+
"distance": 500,
|
|
74
|
+
"offset": { "x": -350, "y": 250, "z": -250 }
|
|
75
|
+
},
|
|
76
|
+
"postProcess": [
|
|
77
|
+
{
|
|
78
|
+
"tool": "terrain_smooth",
|
|
79
|
+
"params": {
|
|
80
|
+
"region": {
|
|
81
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
82
|
+
"max": { "x": 256, "y": 80, "z": 256 }
|
|
83
|
+
},
|
|
84
|
+
"intensity": 0.5
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"customization": {
|
|
89
|
+
"scaleFactor": [0.5, 1, 2],
|
|
90
|
+
"materialSwaps": {
|
|
91
|
+
"LeafyGrass": ["Grass", "Snow"],
|
|
92
|
+
"Ground": ["Mud", "Rock"],
|
|
93
|
+
"Water": ["Ice"]
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"volcanic_crater": {
|
|
98
|
+
"name": "Volcanic Crater",
|
|
99
|
+
"nameKo": "화산 분화구",
|
|
100
|
+
"theme": "volcanic",
|
|
101
|
+
"difficulty": "intermediate",
|
|
102
|
+
"description": "Dramatic volcanic terrain with lava flows, basalt formations, and rocky peaks",
|
|
103
|
+
"size": {
|
|
104
|
+
"base": 512,
|
|
105
|
+
"variants": [256, 512, 1024]
|
|
106
|
+
},
|
|
107
|
+
"bounds": {
|
|
108
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
109
|
+
"max": { "x": 256, "y": 100, "z": 256 }
|
|
110
|
+
},
|
|
111
|
+
"generation": {
|
|
112
|
+
"baseHeight": { "base": 32, "variance": 3 },
|
|
113
|
+
"amplitude": { "base": 18, "variance": 3 },
|
|
114
|
+
"frequency": { "base": 0.005, "variance": 0.001 },
|
|
115
|
+
"layers": [
|
|
116
|
+
{ "material": "CrackedLava", "maxHeight": 20 },
|
|
117
|
+
{ "material": "Basalt", "maxHeight": 32 },
|
|
118
|
+
{ "material": "Rock", "maxHeight": 50 },
|
|
119
|
+
{ "material": "Slate", "maxHeight": 100 }
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
"spawnConfig": {
|
|
123
|
+
"count": 3,
|
|
124
|
+
"minSpacing": 50,
|
|
125
|
+
"preferOutdoor": true,
|
|
126
|
+
"heightOffset": 3,
|
|
127
|
+
"fallbackSpawns": [
|
|
128
|
+
{ "x": 0, "y": 35, "z": 0 },
|
|
129
|
+
{ "x": 80, "y": 35, "z": -60 },
|
|
130
|
+
{ "x": -60, "y": 35, "z": 80 }
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"objectSpawnConfig": {
|
|
134
|
+
"count": 5,
|
|
135
|
+
"minSpacing": 40,
|
|
136
|
+
"heightOffset": 2
|
|
137
|
+
},
|
|
138
|
+
"focusView": {
|
|
139
|
+
"distance": 500,
|
|
140
|
+
"offset": { "x": -350, "y": 280, "z": -250 }
|
|
141
|
+
},
|
|
142
|
+
"postProcess": [
|
|
143
|
+
{
|
|
144
|
+
"tool": "terrain_smooth",
|
|
145
|
+
"params": {
|
|
146
|
+
"region": {
|
|
147
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
148
|
+
"max": { "x": 256, "y": 100, "z": 256 }
|
|
149
|
+
},
|
|
150
|
+
"intensity": 0.4
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"customization": {
|
|
155
|
+
"scaleFactor": [0.5, 1, 2],
|
|
156
|
+
"materialSwaps": {
|
|
157
|
+
"CrackedLava": ["Water"],
|
|
158
|
+
"Basalt": ["Rock", "Slate"],
|
|
159
|
+
"Slate": ["Snow", "Glacier"]
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"tropical_island": {
|
|
164
|
+
"name": "Tropical Island",
|
|
165
|
+
"nameKo": "열대 섬",
|
|
166
|
+
"theme": "island",
|
|
167
|
+
"difficulty": "intermediate",
|
|
168
|
+
"description": "Island terrain surrounded by water with sandy beaches, lush vegetation, and rocky peaks",
|
|
169
|
+
"size": {
|
|
170
|
+
"base": 512,
|
|
171
|
+
"variants": [256, 512, 1024]
|
|
172
|
+
},
|
|
173
|
+
"bounds": {
|
|
174
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
175
|
+
"max": { "x": 256, "y": 120, "z": 256 }
|
|
176
|
+
},
|
|
177
|
+
"generation": {
|
|
178
|
+
"baseHeight": { "base": 42, "variance": 5 },
|
|
179
|
+
"amplitude": { "base": 38, "variance": 5 },
|
|
180
|
+
"frequency": { "base": 0.003, "variance": 0.001 },
|
|
181
|
+
"layers": [
|
|
182
|
+
{ "material": "Water", "maxHeight": 25 },
|
|
183
|
+
{ "material": "Sand", "maxHeight": 32 },
|
|
184
|
+
{ "material": "LeafyGrass", "maxHeight": 55 },
|
|
185
|
+
{ "material": "Ground", "maxHeight": 70 },
|
|
186
|
+
{ "material": "Rock", "maxHeight": 120 }
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
"spawnConfig": {
|
|
190
|
+
"count": 3,
|
|
191
|
+
"minSpacing": 50,
|
|
192
|
+
"preferOutdoor": true,
|
|
193
|
+
"heightOffset": 3,
|
|
194
|
+
"fallbackSpawns": [
|
|
195
|
+
{ "x": 0, "y": 45, "z": 0 },
|
|
196
|
+
{ "x": 80, "y": 45, "z": -60 },
|
|
197
|
+
{ "x": -60, "y": 45, "z": 80 }
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
"objectSpawnConfig": {
|
|
201
|
+
"count": 5,
|
|
202
|
+
"minSpacing": 40,
|
|
203
|
+
"heightOffset": 2
|
|
204
|
+
},
|
|
205
|
+
"focusView": {
|
|
206
|
+
"distance": 530,
|
|
207
|
+
"offset": { "x": -40, "y": 355, "z": -390 }
|
|
208
|
+
},
|
|
209
|
+
"postProcess": [
|
|
210
|
+
{
|
|
211
|
+
"tool": "terrain_smooth",
|
|
212
|
+
"params": {
|
|
213
|
+
"region": {
|
|
214
|
+
"min": { "x": -256, "y": 0, "z": -256 },
|
|
215
|
+
"max": { "x": 256, "y": 120, "z": 256 }
|
|
216
|
+
},
|
|
217
|
+
"intensity": 0.5
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"customization": {
|
|
222
|
+
"scaleFactor": [0.5, 1, 2],
|
|
223
|
+
"materialSwaps": {
|
|
224
|
+
"LeafyGrass": ["Grass", "Snow"],
|
|
225
|
+
"Ground": ["Mud", "Rock"],
|
|
226
|
+
"Water": ["Ice"]
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"materials": {
|
|
232
|
+
"natural": ["Grass", "LeafyGrass", "Ground", "Mud", "Sand", "Sandstone", "Rock", "Slate", "Basalt", "Snow", "Glacier", "Ice"],
|
|
233
|
+
"water": ["Water"],
|
|
234
|
+
"volcanic": ["CrackedLava", "Basalt", "Rock"],
|
|
235
|
+
"building": ["Concrete", "Pavement", "Brick", "Cobblestone"],
|
|
236
|
+
"special": ["Neon", "Air"]
|
|
237
|
+
},
|
|
238
|
+
"layerPresets": {
|
|
239
|
+
"forest": [
|
|
240
|
+
{ "material": "Water", "maxHeight": 10 },
|
|
241
|
+
{ "material": "Sand", "maxHeight": 15 },
|
|
242
|
+
{ "material": "LeafyGrass", "maxHeight": 30 },
|
|
243
|
+
{ "material": "Ground", "maxHeight": 38 },
|
|
244
|
+
{ "material": "Rock", "maxHeight": 80 }
|
|
245
|
+
],
|
|
246
|
+
"desert": [
|
|
247
|
+
{ "material": "Water", "maxHeight": 5 },
|
|
248
|
+
{ "material": "Sandstone", "maxHeight": 25 },
|
|
249
|
+
{ "material": "Sand", "maxHeight": 35 },
|
|
250
|
+
{ "material": "Rock", "maxHeight": 80 }
|
|
251
|
+
],
|
|
252
|
+
"snow": [
|
|
253
|
+
{ "material": "Water", "maxHeight": 8 },
|
|
254
|
+
{ "material": "Ice", "maxHeight": 12 },
|
|
255
|
+
{ "material": "Snow", "maxHeight": 40 },
|
|
256
|
+
{ "material": "Glacier", "maxHeight": 80 }
|
|
257
|
+
],
|
|
258
|
+
"volcanic": [
|
|
259
|
+
{ "material": "CrackedLava", "maxHeight": 20 },
|
|
260
|
+
{ "material": "Basalt", "maxHeight": 32 },
|
|
261
|
+
{ "material": "Rock", "maxHeight": 50 },
|
|
262
|
+
{ "material": "Slate", "maxHeight": 100 }
|
|
263
|
+
],
|
|
264
|
+
"island": [
|
|
265
|
+
{ "material": "Water", "maxHeight": 15 },
|
|
266
|
+
{ "material": "Sand", "maxHeight": 22 },
|
|
267
|
+
{ "material": "LeafyGrass", "maxHeight": 55 },
|
|
268
|
+
{ "material": "Ground", "maxHeight": 75 },
|
|
269
|
+
{ "material": "Rock", "maxHeight": 120 }
|
|
270
|
+
]
|
|
271
|
+
}
|
|
272
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"category": "monsters",
|
|
4
|
+
"description": "RPG monsters and enemy assets with animations",
|
|
5
|
+
"lastUpdated": "2026-01-30",
|
|
6
|
+
"totalAssets": 5
|
|
7
|
+
},
|
|
8
|
+
"searchHints": {
|
|
9
|
+
"undead": ["zombie enemy R15", "skeleton warrior", "ghost spirit", "vampire"],
|
|
10
|
+
"beast": ["wolf animal enemy", "bear animal", "spider enemy", "scorpion"],
|
|
11
|
+
"humanoid": ["goblin enemy", "orc warrior", "bandit thief", "troll"],
|
|
12
|
+
"boss": ["dragon boss", "demon boss", "golem boss", "lich undead boss"],
|
|
13
|
+
"creature": ["slime monster", "bat enemy", "rat enemy", "snake"]
|
|
14
|
+
},
|
|
15
|
+
"qualityCriteria": {
|
|
16
|
+
"preferR15": true,
|
|
17
|
+
"maxPartCount": 100,
|
|
18
|
+
"requiresHumanoid": true,
|
|
19
|
+
"requiresAnimations": true,
|
|
20
|
+
"freeOnly": true
|
|
21
|
+
},
|
|
22
|
+
"defaultFocusView": {
|
|
23
|
+
"distance": 30,
|
|
24
|
+
"offset": { "x": 20, "y": 10, "z": 20 }
|
|
25
|
+
},
|
|
26
|
+
"assets": [
|
|
27
|
+
{
|
|
28
|
+
"id": 3375251681,
|
|
29
|
+
"name": "Zombie",
|
|
30
|
+
"type": "undead",
|
|
31
|
+
"query": "zombie enemy R15",
|
|
32
|
+
"creator": "Rzepert",
|
|
33
|
+
"description": "R15 zombie with full animation set",
|
|
34
|
+
"structure": {
|
|
35
|
+
"partCount": 16,
|
|
36
|
+
"meshPartCount": 14,
|
|
37
|
+
"hasHumanoid": true,
|
|
38
|
+
"hasScripts": true,
|
|
39
|
+
"motor6D": 15,
|
|
40
|
+
"animations": 10,
|
|
41
|
+
"animationList": ["climb", "fall", "idle", "idle2", "jump", "sit", "swim", "swimidle", "toolnone", "walk"]
|
|
42
|
+
},
|
|
43
|
+
"focusView": {
|
|
44
|
+
"distance": 30,
|
|
45
|
+
"offset": { "x": 20, "y": 10, "z": 20 }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": 9512936349,
|
|
50
|
+
"name": "Shadow Monster",
|
|
51
|
+
"type": "humanoid",
|
|
52
|
+
"query": "monster NPC killer animated",
|
|
53
|
+
"creator": "IL_CAPITANO502",
|
|
54
|
+
"description": "Dark humanoid monster with R6 animations",
|
|
55
|
+
"structure": {
|
|
56
|
+
"partCount": 7,
|
|
57
|
+
"hasHumanoid": true,
|
|
58
|
+
"hasScripts": true,
|
|
59
|
+
"motor6D": 6,
|
|
60
|
+
"animations": 9,
|
|
61
|
+
"animationList": ["climb", "fall", "idle", "idle2", "jump", "run", "sit", "toolnone", "walk"]
|
|
62
|
+
},
|
|
63
|
+
"focusView": {
|
|
64
|
+
"distance": 35,
|
|
65
|
+
"offset": { "x": 20, "y": 15, "z": 20 }
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": 71129266059717,
|
|
70
|
+
"name": "Orc Warrior",
|
|
71
|
+
"type": "humanoid",
|
|
72
|
+
"query": "R15 orc monster",
|
|
73
|
+
"creator": "BotDrone_Studios",
|
|
74
|
+
"description": "R15 orc with full animation set including combat moves",
|
|
75
|
+
"structure": {
|
|
76
|
+
"partCount": 16,
|
|
77
|
+
"meshPartCount": 15,
|
|
78
|
+
"hasHumanoid": true,
|
|
79
|
+
"hasScripts": true,
|
|
80
|
+
"motor6D": 15,
|
|
81
|
+
"animations": 27,
|
|
82
|
+
"animationList": ["mood", "cheer", "climb", "dance", "dance2", "dance3", "fall", "idle", "idle2", "jump", "laugh", "point", "run", "sit", "swim", "swimidle", "toollunge", "toolnone", "toolslash", "walk", "wave"]
|
|
83
|
+
},
|
|
84
|
+
"focusView": {
|
|
85
|
+
"distance": 30,
|
|
86
|
+
"offset": { "x": 20, "y": 10, "z": 20 }
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": 5217586235,
|
|
91
|
+
"name": "Green Zombie",
|
|
92
|
+
"type": "undead",
|
|
93
|
+
"query": "zombie R15 animated",
|
|
94
|
+
"creator": "Think_yDev",
|
|
95
|
+
"description": "Alternative R15 zombie with animations",
|
|
96
|
+
"structure": {
|
|
97
|
+
"partCount": 16,
|
|
98
|
+
"meshPartCount": 14,
|
|
99
|
+
"hasHumanoid": true,
|
|
100
|
+
"hasScripts": true,
|
|
101
|
+
"motor6D": 15,
|
|
102
|
+
"animations": 10,
|
|
103
|
+
"animationList": ["climb", "fall", "idle", "idle2", "jump", "sit", "swim", "swimidle", "toolnone", "walk"]
|
|
104
|
+
},
|
|
105
|
+
"focusView": {
|
|
106
|
+
"distance": 30,
|
|
107
|
+
"offset": { "x": 20, "y": 10, "z": 20 }
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": 103446417026847,
|
|
112
|
+
"name": "Earth Golem",
|
|
113
|
+
"type": "boss",
|
|
114
|
+
"query": "golem boss animated",
|
|
115
|
+
"creator": "AtomicEvilMango",
|
|
116
|
+
"description": "Large golem boss with full animation set",
|
|
117
|
+
"structure": {
|
|
118
|
+
"partCount": 16,
|
|
119
|
+
"meshPartCount": 15,
|
|
120
|
+
"hasHumanoid": true,
|
|
121
|
+
"hasScripts": true,
|
|
122
|
+
"motor6D": 15,
|
|
123
|
+
"animations": 27,
|
|
124
|
+
"animationList": ["mood", "cheer", "climb", "dance", "dance2", "dance3", "fall", "idle", "idle2", "jump", "laugh", "point", "run", "sit", "swim", "swimidle", "toollunge", "toolnone", "toolslash", "walk", "wave"]
|
|
125
|
+
},
|
|
126
|
+
"focusView": {
|
|
127
|
+
"distance": 45,
|
|
128
|
+
"offset": { "x": 25, "y": 15, "z": 25 }
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"category": "npcs",
|
|
4
|
+
"description": "RPG NPC characters with animations. For more options, monsters assets can also be used as NPCs with different behavior scripts.",
|
|
5
|
+
"lastUpdated": "2026-01-30",
|
|
6
|
+
"totalAssets": 1,
|
|
7
|
+
"note": "monsters.json assets are compatible as NPCs - same R15/R6 structure with animations"
|
|
8
|
+
},
|
|
9
|
+
"searchHints": {
|
|
10
|
+
"villager": ["villager npc", "peasant farmer", "citizen townfolk"],
|
|
11
|
+
"merchant": ["merchant trader shop", "shopkeeper npc", "vendor"],
|
|
12
|
+
"quest": ["quest giver npc", "sage elder", "guild master"],
|
|
13
|
+
"service": ["blacksmith npc", "alchemist potion", "innkeeper tavern"],
|
|
14
|
+
"guard": ["guard knight soldier", "guard npc", "patrol soldier"]
|
|
15
|
+
},
|
|
16
|
+
"qualityCriteria": {
|
|
17
|
+
"preferR15": true,
|
|
18
|
+
"requiresHumanoid": true,
|
|
19
|
+
"requiresAnimations": true,
|
|
20
|
+
"freeOnly": true
|
|
21
|
+
},
|
|
22
|
+
"defaultFocusView": {
|
|
23
|
+
"distance": 25,
|
|
24
|
+
"offset": { "x": 18, "y": 8, "z": 18 }
|
|
25
|
+
},
|
|
26
|
+
"sharedWith": ["monsters"],
|
|
27
|
+
"assets": [
|
|
28
|
+
{
|
|
29
|
+
"id": 11219356175,
|
|
30
|
+
"name": "The NPC",
|
|
31
|
+
"type": "villager",
|
|
32
|
+
"query": "NPC animated R6",
|
|
33
|
+
"creator": "meisson20",
|
|
34
|
+
"description": "Basic R6 NPC with full animation set and AI scripts",
|
|
35
|
+
"structure": {
|
|
36
|
+
"partCount": 10,
|
|
37
|
+
"hasHumanoid": true,
|
|
38
|
+
"hasScripts": true,
|
|
39
|
+
"motor6D": 6,
|
|
40
|
+
"animations": 9,
|
|
41
|
+
"animationList": ["climb", "fall", "idle", "idle2", "jump", "run", "sit", "toolnone", "walk"],
|
|
42
|
+
"hasSounds": true
|
|
43
|
+
},
|
|
44
|
+
"focusView": {
|
|
45
|
+
"distance": 25,
|
|
46
|
+
"offset": { "x": 18, "y": 8, "z": 18 }
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"category": "weapons",
|
|
4
|
+
"description": "RPG weapon assets",
|
|
5
|
+
"lastUpdated": "2026-01-30",
|
|
6
|
+
"totalAssets": 3
|
|
7
|
+
},
|
|
8
|
+
"searchHints": {
|
|
9
|
+
"melee": [
|
|
10
|
+
"sword weapon tool",
|
|
11
|
+
"axe weapon",
|
|
12
|
+
"dagger knife",
|
|
13
|
+
"spear weapon",
|
|
14
|
+
"mace weapon"
|
|
15
|
+
],
|
|
16
|
+
"ranged": [
|
|
17
|
+
"bow arrow weapon",
|
|
18
|
+
"crossbow weapon",
|
|
19
|
+
"throwing knife"
|
|
20
|
+
],
|
|
21
|
+
"magic": [
|
|
22
|
+
"magic staff wizard",
|
|
23
|
+
"magic wand",
|
|
24
|
+
"fire staff",
|
|
25
|
+
"ice staff frost"
|
|
26
|
+
],
|
|
27
|
+
"defense": [
|
|
28
|
+
"shield defense",
|
|
29
|
+
"wooden shield",
|
|
30
|
+
"iron shield"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"qualityCriteria": {
|
|
34
|
+
"requiresHandle": true,
|
|
35
|
+
"requiresTool": true,
|
|
36
|
+
"maxPartCount": 50,
|
|
37
|
+
"freeOnly": true
|
|
38
|
+
},
|
|
39
|
+
"defaultFocusView": {
|
|
40
|
+
"distance": 15,
|
|
41
|
+
"offset": {
|
|
42
|
+
"x": 8,
|
|
43
|
+
"y": 5,
|
|
44
|
+
"z": 12
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"assets": [
|
|
48
|
+
{
|
|
49
|
+
"id": 65524795,
|
|
50
|
+
"name": "Thunder Staff of Pwnage",
|
|
51
|
+
"type": "magic",
|
|
52
|
+
"query": "magic staff wizard",
|
|
53
|
+
"creator": "TheCoolDog",
|
|
54
|
+
"description": "Lightning staff, no reload time",
|
|
55
|
+
"structure": {
|
|
56
|
+
"className": "Tool",
|
|
57
|
+
"partCount": 1,
|
|
58
|
+
"hasScripts": true,
|
|
59
|
+
"hasSound": true,
|
|
60
|
+
"hasHandle": true,
|
|
61
|
+
"hasSpecialMesh": true,
|
|
62
|
+
"boundingBox": {
|
|
63
|
+
"x": 0.7,
|
|
64
|
+
"y": 0.5,
|
|
65
|
+
"z": 6.75
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"focusView": {
|
|
69
|
+
"distance": 15,
|
|
70
|
+
"offset": {
|
|
71
|
+
"x": 8,
|
|
72
|
+
"y": 5,
|
|
73
|
+
"z": 12
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": 2160618177,
|
|
79
|
+
"name": "Classic Sword",
|
|
80
|
+
"type": "melee",
|
|
81
|
+
"query": "classic sword",
|
|
82
|
+
"creator": "Doodlemeyer",
|
|
83
|
+
"description": "Classic Roblox sword, simple and reliable",
|
|
84
|
+
"structure": {
|
|
85
|
+
"className": "Tool",
|
|
86
|
+
"partCount": 1,
|
|
87
|
+
"hasScripts": true,
|
|
88
|
+
"hasHandle": true,
|
|
89
|
+
"hasSpecialMesh": true,
|
|
90
|
+
"boundingBox": {
|
|
91
|
+
"x": 1,
|
|
92
|
+
"y": 0.8,
|
|
93
|
+
"z": 4
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"focusView": {
|
|
97
|
+
"distance": 10,
|
|
98
|
+
"offset": {
|
|
99
|
+
"x": 8,
|
|
100
|
+
"y": 5,
|
|
101
|
+
"z": 12
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": 2304105204,
|
|
107
|
+
"name": "Classic Sword (FE)",
|
|
108
|
+
"type": "melee",
|
|
109
|
+
"query": "classic sword",
|
|
110
|
+
"creator": "TunacanGamer",
|
|
111
|
+
"description": "FilteringEnabled compatible classic sword with trail effect",
|
|
112
|
+
"recommended": true,
|
|
113
|
+
"structure": {
|
|
114
|
+
"className": "Tool",
|
|
115
|
+
"partCount": 1,
|
|
116
|
+
"hasScripts": true,
|
|
117
|
+
"hasHandle": true,
|
|
118
|
+
"hasSpecialMesh": true,
|
|
119
|
+
"moduleScripts": 13,
|
|
120
|
+
"hasConfiguration": true,
|
|
121
|
+
"hasRemoteEvent": true,
|
|
122
|
+
"hasTrail": true,
|
|
123
|
+
"hasSounds": true,
|
|
124
|
+
"boundingBox": {
|
|
125
|
+
"x": 1,
|
|
126
|
+
"y": 0.8,
|
|
127
|
+
"z": 4
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"focusView": {
|
|
131
|
+
"distance": 10,
|
|
132
|
+
"offset": {
|
|
133
|
+
"x": 8,
|
|
134
|
+
"y": 5,
|
|
135
|
+
"z": 12
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"category": "animations",
|
|
4
|
+
"description": "Default R15 animation IDs",
|
|
5
|
+
"lastUpdated": "2025-01-28",
|
|
6
|
+
"source": "Roblox Default R15 Animations"
|
|
7
|
+
},
|
|
8
|
+
"r15": {
|
|
9
|
+
"movement": {
|
|
10
|
+
"idle": "rbxassetid://507766666",
|
|
11
|
+
"walk": "rbxassetid://507777826",
|
|
12
|
+
"run": "rbxassetid://507767714",
|
|
13
|
+
"jump": "rbxassetid://507765000",
|
|
14
|
+
"fall": "rbxassetid://507767968",
|
|
15
|
+
"climb": "rbxassetid://507765644",
|
|
16
|
+
"swimIdle": "rbxassetid://507784897",
|
|
17
|
+
"swim": "rbxassetid://507785072"
|
|
18
|
+
},
|
|
19
|
+
"combat": {
|
|
20
|
+
"punch": "rbxassetid://507770818",
|
|
21
|
+
"slash": "rbxassetid://522635514",
|
|
22
|
+
"lunge": "rbxassetid://522638767",
|
|
23
|
+
"toolNone": "rbxassetid://507768375"
|
|
24
|
+
},
|
|
25
|
+
"emotes": {
|
|
26
|
+
"wave": "rbxassetid://507770239",
|
|
27
|
+
"laugh": "rbxassetid://507770818",
|
|
28
|
+
"cheer": "rbxassetid://507770677",
|
|
29
|
+
"point": "rbxassetid://507770453",
|
|
30
|
+
"dance": "rbxassetid://507771019",
|
|
31
|
+
"dance2": "rbxassetid://507776043",
|
|
32
|
+
"dance3": "rbxassetid://507777268"
|
|
33
|
+
},
|
|
34
|
+
"states": {
|
|
35
|
+
"sit": "rbxassetid://507768133",
|
|
36
|
+
"death": "rbxassetid://507772104",
|
|
37
|
+
"gettingUp": "rbxassetid://507768335"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|