Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions spriteAI/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,4 +230,38 @@ export const generateItemSprites = async function(description, options = {}) {
}
}
};
};

// New convenience functions for specific character types
export const generateNinja = async function(options = {}) {
const defaultOptions = {
states: ['idle', 'walk', 'run', 'attack', 'sneak'],
style: 'pixel-art',
framesPerState: 6
};
const mergedOptions = { ...defaultOptions, ...options };

return generateCharacterSpritesheet('ninja character with black outfit and mask', mergedOptions);
};

export const generateSpaceman = async function(options = {}) {
const defaultOptions = {
states: ['idle', 'walk', 'run', 'float'],
style: 'pixel-art',
framesPerState: 6
};
const mergedOptions = { ...defaultOptions, ...options };

return generateCharacterSpritesheet('astronaut character with space suit and helmet', mergedOptions);
};

export const generateRobot = async function(options = {}) {
const defaultOptions = {
states: ['idle', 'walk', 'run', 'attack', 'power-up'],
style: 'pixel-art',
framesPerState: 6
};
const mergedOptions = { ...defaultOptions, ...options };

return generateCharacterSpritesheet('robot character with mechanical limbs and glowing eyes', mergedOptions);
};