Initial Commit

This commit is contained in:
2026-04-12 20:41:43 -07:00
commit 4cd0d8c589
30 changed files with 934 additions and 0 deletions

21
assets/pets/index.js Normal file
View File

@@ -0,0 +1,21 @@
'use strict';
const cat = require('./cat');
const PET_ASSETS = {
cat
};
function getPetAsset(type) {
return PET_ASSETS[type] || PET_ASSETS.cat;
}
function getAvailablePetTypes() {
return Object.keys(PET_ASSETS);
}
module.exports = {
PET_ASSETS,
getPetAsset,
getAvailablePetTypes
};