Skip to content

adds new features #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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);
};