Generate custom game avatars from photos using Nano Banana AI prompt

About Prompt

  • Prompt Type – Dynamic
  • Prompt Platform – Google Gemini
  • Niche – Character Design
  • Language – English
  • Category – Gaming
  • Prompt Title – Generate custom game avatars from photos using Nano Banana AI prompt

Prompt Details

## Dynamic Prompt for Generating Custom Game Avatars from Photos using Nano Banana AI (Google Gemini)

This prompt is designed for Google Gemini to generate custom game avatars from user-provided photos. It leverages the “Nano Banana AI” stylistic approach, focusing on character design for gaming purposes. The prompt is dynamic, allowing users to customize various aspects of the avatar generation process.

**Base Prompt:**

“`
Imagine you are Nano Banana AI, a character artist specializing in stylized game avatars. You will create a custom avatar based on the provided photo. The target style is vibrant, expressive, and slightly exaggerated, reminiscent of high-quality mobile game characters.

Photo Input: [URL of Photo or Base64 Encoded Image]

Desired Game Genre: [e.g., RPG, Platformer, Strategy, MMO, etc.]

Desired Character Role/Class: [e.g., Warrior, Mage, Rogue, Support, Tank, etc.]

Desired Pose/Action: [e.g., Standing, Running, Attacking, Casting a spell, Idle animation pose, etc.]

Desired Facial Expression: [e.g., Neutral, Happy, Angry, Determined, Surprised, etc.]

Desired Level of Detail: [e.g., Simple, Moderate, High]

Desired Color Palette: [e.g., Vibrant, Monochromatic, Pastel, Dark Fantasy, Cyberpunk, etc. Optionally provide specific hex codes or color names.]

Additional Features/Details: [e.g., Specific accessories, weapons, armor, hairstyles, clothing, cybernetic enhancements, animal features, etc.]

Output Format: High-resolution image (at least 1024×1024 pixels) suitable for game integration. Preferably PNG with transparency.

Stylistic Keywords: Nano Banana AI, stylized, expressive, vibrant, [game genre specific keywords, e.g., “pixel art” for retro games, “realistic” for AAA titles], dynamic pose, character design, game avatar.

Now, generate the custom game avatar based on the provided parameters.
“`

**Dynamic Prompt Enhancements:**

To make the prompt truly dynamic, we can enhance it with conditional logic and variable substitution. Here’s how you could implement this using placeholder variables within the prompt:

“`javascript
// Example JavaScript code to demonstrate dynamic prompt generation

let photoURL = “https://example.com/user_photo.jpg”;
let gameGenre = “RPG”;
let characterRole = “Mage”;
// … other variables

let prompt = `Imagine you are Nano Banana AI… [rest of the base prompt]

Photo Input: ${photoURL}

Desired Game Genre: ${gameGenre}

Desired Character Role/Class: ${characterRole}

// … other variable substitutions
`;

// Conditional Logic Example:
if (gameGenre === “Sci-Fi”) {
prompt += “Include futuristic elements and potential cybernetic enhancements.”;
} else if (gameGenre === “Fantasy”) {
prompt += “Consider incorporating magical elements and fantasy-themed attire.”;
}

// Submit the dynamically generated prompt to Google Gemini
“`

**Advanced Techniques:**

* **Iterative Refinement:** Use the output of the initial prompt as a starting point for further refinement. Provide feedback to Gemini, specifying what aspects need improvement, such as “Make the character’s armor more ornate” or “Adjust the color palette to be more muted.”

* **Negative Prompts:** Include negative prompts to explicitly exclude unwanted elements. For example, “Avoid overly realistic textures,” or “Do not include blood or gore.”

* **Seed Value:** Consider incorporating a seed value for reproducibility. This allows you to generate variations of the same avatar with subtle differences.

* **Prompt Weighting:** Experiment with weighting different parts of the prompt to emphasize certain aspects. This could be achieved by repeating keywords or phrasing them more strongly.

**Example Usage (Sci-Fi RPG Mage):**

“`
Imagine you are Nano Banana AI…

Photo Input: [URL of photo]

Desired Game Genre: Sci-Fi RPG

Desired Character Role/Class: Mage

Desired Pose/Action: Casting a spell, hands outstretched

Desired Facial Expression: Determined

Desired Level of Detail: High

Desired Color Palette: Cyberpunk, predominantly blues and purples with neon accents.

Additional Features/Details: Flowing robes with integrated circuitry, glowing cybernetic implants on hands, intricate futuristic staff.

Output Format: High-resolution PNG with transparency.

Stylistic Keywords: Nano Banana AI, stylized, expressive, vibrant, cyberpunk, sci-fi, magic, dynamic pose, character design, game avatar.

Include futuristic elements and potential cybernetic enhancements.
“`

This dynamic and detailed prompt structure will guide Google Gemini to generate highly customized and expressive game avatars tailored to the user’s specific needs. Remember to experiment and iterate to achieve the best results.