banner_image ×
SeaArt AI Enterprise Version

A man in a blue and yellow costume standing in front of a cloudy sky

Clear! Here are some features you can use to draw the character Eric:

- Eric is a young, athletic man, about 30 years old.
- He has short, dark hair with a slight unshaven beard.
- His eyes are expressive, reflecting determination and a certain emotional heaviness.
- Eric possesses a confident and firm posture, demonstrating his inner strength.
- He wears a low-key heroic costume, with shades of blue and black. It can have a short cover.
- The suit is practical and functional, designed to allow mobility and protection.
- Eric wears a distinctive symbol on his chest, which represents his heroic identity (you can choose the symbol).
- He wears gloves and boots, underscoring his preparation for combat.
- Eric's face displays a serious expression, but also a soft melancholy, reflecting his personal journey.
- While there may be a sadness in his gaze, there is still a determination evident in his facial features.

Use these characteristics

# Definition of Eric's characteristics
cor_cabelo = "black"
cor_olhos = "blue"
cor_pele = "white"
cor_roupa = "blue"
cor_simbolo = "yellow"

t.pensize(3)

# Draw Eric's head
t.fillcolor(cor_pele)
t.begin_fill()
t.circle(50)
t.end_fill()

# Draw the eyes
t.penup()
T.Goto(-15, 60)
t.pendown()
t.fillcolor(cor_olhos)
t.begin_fill()
t.circle(10)
t.end_fill()

t.penup()
T.Goto(15, 60)
t.pendown()
t.fillcolor(cor_olhos)
t.begin_fill()
t.circle(10)
t.end_fill()

# Draw the hair
t.penup()
T.Goto(-35, 75)
t.pendown()
t.fillcolor(cor_cabelo)
t.begin_fill()
t.forward(70)
t.left(120)
t.forward(90)
t.left(120)
t.forward(90)
t.left(120)
t.forward(20)
t.end_fill()

# Draw the body
t.penup()
t.goto(-50, -50)
t.pendown()
t.fillcolor(cor_roupa)
t.begin_fill()
t.forward(100)
t.left(90)
t.forward(150)
t.left(90)
t.forward(100)
t.left(90)
t.forward(150)
t.end_fill()

# Draw the symbol on the chest
t.penup()
t.goto(-20, 0)
t.pendown()
t.fillcolor(cor_simbolo)
t.begin_fill()
t.circle(20)
t.end_fill()

#
chatIcon
I've got some secrets that I can't share with anyone else. Wanna listen?
Create AI Character
image
avatar
R
ROS GaMeS
Prompts
Copy
Clear ! Here are some features you can use to draw the character Eric: - Eric is a young , athletic man , about 30 years old . - He has short , dark hair with a slight unshaven beard . - His eyes are expressive , reflecting determination and a certain emotional heaviness . - Eric possesses a confident and firm posture , demonstrating his inner strength . - He wears a low-key heroic costume , with shades of blue and black . It can have a short cover . - The suit is practical and functional , designed to allow mobility and protection . - Eric wears a distinctive symbol on his chest , which represents his heroic identity (you can choose the symbol) . - He wears gloves and boots , underscoring his preparation for combat . - Eric's face displays a serious expression , but also a soft melancholy , reflecting his personal journey . - While there may be a sadness in his gaze , there is still a determination evident in his facial features . Use these characteristics # Definition of Eric's characteristics cor_cabelo = "black" cor_olhos = "blue" cor_pele = "white" cor_roupa = "blue" cor_simbolo = "yellow" t . pensize(3) # Draw Eric's head t . fillcolor(cor_pele) t . begin_fill() t . circle(50) t . end_fill() # Draw the eyes t . penup() T . Goto(-15 , 60) t . pendown() t . fillcolor(cor_olhos) t . begin_fill() t . circle(10) t . end_fill() t . penup() T . Goto(15 , 60) t . pendown() t . fillcolor(cor_olhos) t . begin_fill() t . circle(10) t . end_fill() # Draw the hair t . penup() T . Goto(-35 , 75) t . pendown() t . fillcolor(cor_cabelo) t . begin_fill() t . forward(70) t . left(120) t . forward(90) t . left(120) t . forward(90) t . left(120) t . forward(20) t . end_fill() # Draw the body t . penup() t . goto(-50 , -50) t . pendown() t . fillcolor(cor_roupa) t . begin_fill() t . forward(100) t . left(90) t . forward(150) t . left(90) t . forward(100) t . left(90) t . forward(150) t . end_fill() # Draw the symbol on the chest t . penup() t . goto(-20 , 0) t . pendown() t . fillcolor(cor_simbolo) t . begin_fill() t . circle(20) t . end_fill() #
INFO
Prompts
Clear! Here are some features you can use to draw the character Eric: - Eric is a young, athletic man, about 30 years old. - He has short, dark hair with a slight unshaven beard. - His eyes are expressive, reflecting determination and a certain emotional heaviness. - Eric possesses a confident and firm posture, demonstrating his inner strength. - He wears a low-key heroic costume, with shades of blue and black. It can have a short cover. - The suit is practical and functional, designed to allow mobility and protection. - Eric wears a distinctive symbol on his chest, which represents his heroic identity (you can choose the symbol). - He wears gloves and boots, underscoring his preparation for combat. - Eric's face displays a serious expression, but also a soft melancholy, reflecting his personal journey. - While there may be a sadness in his gaze, there is still a determination evident in his facial features. Use these characteristics # Definition of Eric's characteristics cor_cabelo = "black" cor_olhos = "blue" cor_pele = "white" cor_roupa = "blue" cor_simbolo = "yellow" t.pensize(3) # Draw Eric's head t.fillcolor(cor_pele) t.begin_fill() t.circle(50) t.end_fill() # Draw the eyes t.penup() T.Goto(-15, 60) t.pendown() t.fillcolor(cor_olhos) t.begin_fill() t.circle(10) t.end_fill() t.penup() T.Goto(15, 60) t.pendown() t.fillcolor(cor_olhos) t.begin_fill() t.circle(10) t.end_fill() # Draw the hair t.penup() T.Goto(-35, 75) t.pendown() t.fillcolor(cor_cabelo) t.begin_fill() t.forward(70) t.left(120) t.forward(90) t.left(120) t.forward(90) t.left(120) t.forward(20) t.end_fill() # Draw the body t.penup() t.goto(-50, -50) t.pendown() t.fillcolor(cor_roupa) t.begin_fill() t.forward(100) t.left(90) t.forward(150) t.left(90) t.forward(100) t.left(90) t.forward(150) t.end_fill() # Draw the symbol on the chest t.penup() t.goto(-20, 0) t.pendown() t.fillcolor(cor_simbolo) t.begin_fill() t.circle(20) t.end_fill() #
Negative Prompts
(nsfw:1.5),naked, nude, nudity, nsfw, cropped head, 3d, render, cartoon,
CFG Scale
7
Steps
34
Sampler
Euler a
Seed
2900748036
Clip Skip
Image Size
1024 X 1536
Denoising Strength
0.2
Model
DreamShaper
Generate
Size
1024X1536
Date
Jun 27, 2023
Mode
Default
Type
upscale
Checkpoint & LoRA
DreamShaper
Checkpoint
DreamShaper
0 comment
0
0
0

SeaArt Swift AI Apps

ai_video_generationimg
AI Video Generation

Unleash your imagination and let AI create visual wonders for you

face_swap_titleimg
Face Swap Online Free

Create funny or realistic face swap videos & photos in a snap

gender_swapimg
Gender Swap

Swap genders in photos and videos with SeaArt's AI gender swapper. Enjoy fun and realistic transformations effortlessly, free online!

fuse_anyoneimg
AI Image Fusion

Combine two images into new one stunning visual with AI Image Fusion.

ghibli_filter_h1img
Studio Ghibli Filter

Transform any photo into unique Ghibli-style art in just one click.

cartoon_avatar_h1img
Cartoon Avatar Maker

Turn your photos into unique cartoon avatars instantly.

Explore More AI Apps 

Explore Related

ControlNet
logo
English
Application
Create Image AI Characters Swift AI Model Training Canvas AI Apps Workflow
About
Studio Rankings AI Chat AI Blog AI News
Help
Guides Customer Service
Get App
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Follow Us
iconiconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Terms
Privacy 特定商取引法 資金決済法に基づく表示
More