enmitygoddess
enmitygoddess
Little bit of Everything
577 posts
|22| PH| Sagittarius | Simblr | Yaoi blog || INAPPROPRIATE | COUCH POTATO | CLUMSY | |BROODING | NEUROTIC | SENSE OF HUMOR |
Don't wanna be here? Send us removal request.
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
ACC-Bohemian Robe & Tassel Choker
ACC-Bohemian Robe_here
Tassel Choker_here
1K notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media
A choker avec la fleur de lis
http://thesimsresource.com/downloads/details/category/sims4-accessories-female-necklaces/title/fleur-de-lis-choker/id/1346395/
68 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media
Eyes #9 - Remake
The old version can be found *here*.
12 Colors
HQ Texture
Facepaint
Standalone & Custom Thumbnail
All Ages and Genders
Download Links under the cut!
Keep reading
2K notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media Tumblr media
Akiya Kageichi
620 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Funny story behind-the-scenes making this sim....
just so you guys know... To be totally honest with you guys, I’m not really a big fan of Lily Collins. 
Earlier today, I downloaded @stealthic  ‘s awesome Vapor hair, but was so lazy to try it out for my existing sim. So, I made a new sim to try it out. ( IT’S THAT GOOD) Originally, I was planning to make a so-so sim, but surprisingly, I made a pretty okay sim... and then I started to recognize a similarity with Lily so here it is. 
Well it’s not the super accurate sim version but I’m not THAT perfectionist LOL 
----------------------------------------------------------------------<3
*other CC used for this sim:
Skin, Makeup: S-Club 
Eyebrows: @pralinesims (Btw perfect eyebrows for Lily!) 
0 notes
enmitygoddess · 9 years ago
Photo
<3 
Tumblr media
Vapor (Female Hair): Download
18 colors
Hat support
All LOD’s
Teen through elder
Smooth weighting
You’ve all been asking me for a short hair, so here it is! I hope you like it :)
________________________________________________
Sims 4
1K notes · View notes
enmitygoddess · 9 years ago
Note
Blub Blub Blubb >3<
>3< Bluuub~
2 notes · View notes
enmitygoddess · 9 years ago
Text
How to make your own theme
Tumblr lets you fully customize the appearance of your blog by editing your theme’s HTML code. This is only recommended for users comfortable hand-coding HTML. If you’re not, there are hundreds of great themes to choose from in the Theme Garden!
Once you’ve created a theme you’re proud of, submit it to the Theme Garden to share with everyone on Tumblr!
Introduction
To start, click the name of your blog at the top of the Dashboard, click the “Customize appearance” button on the right side of the page. Click the “Theme” tab, and click “Use custom HTML”. This will bring up a text box with your current theme’s HTML code.
Tumblr has two types of special operators used to render content in your HTML.
Variables are used to insert dynamic data like your blog’s title or description:
<html> <head> <title>{Title}</title> </head> <body> ... </body> </html>
Blocks are either used to render a block of HTML for a set of data (like your posts), or to conditionally render a block of HTML (like a “Previous Page” link):
<html> <body> <ol id="posts"> {block:Posts} <li> ... </li> {/block:Posts} </ol> </body> </html>
Here’s an example of the complete markup for a theme:
<html> <head> <title>{Title}</title> <link rel="shortcut icon" href="{Favicon}"> <link rel="alternate" type="application/rss+xml" href="{RSS}"> {block:Description} <meta name="description" content="{MetaDescription}" /> {/block:Description} </head> <body> <h1>{Title}</h1> {block:Description} <p id="description">{Description}</p> {/block:Description} <ol id="posts"> {block:Posts} {block:Text} <li class="post text"> {block:Title} <h3><a href="{Permalink}">{Title}</a></h3> {/block:Title} {Body} </li> {/block:Text} {block:Photo} <li class="post photo"> <img src="{PhotoURL-500}" alt="{PhotoAlt}"/> {block:Caption} <div class="caption">{Caption}</div> {/block:Caption} </li> {/block:Photo} {block:Photoset} <li class="post photoset"> {Photoset-500} {block:Caption} <div class="caption">{Caption}</div> {/block:Caption} </li> {/block:Photoset} {block:Quote} <li class="post quote"> "{Quote}" {block:Source} <div class="source">{Source}</div> {/block:Source} </li> {/block:Quote} {block:Link} <li class="post link"> <a href="{URL}" class="link" {Target}>{Name}</a> {block:Description} <div class="description">{Description}</div> {/block:Description} </li> {/block:Link} {block:Chat} <li class="post chat"> {block:Title} <h3><a href="{Permalink}">{Title}</a></h3> {/block:Title} <ul class="chat"> {block:Lines} <li class="{Alt} user_{UserNumber}"> {block:Label} <span class="label">{Label}</span> {/block:Label} {Line} </li> {/block:Lines} </ul> </li> {/block:Chat} {block:Video} <li class="post video"> {Video-500} {block:Caption} <div class="caption">{Caption}</div> {/block:Caption} </li> {/block:Video} {block:Audio} <li class="post audio"> {AudioPlayerBlack} {block:Caption} <div class="caption">{Caption}</div> {/block:Caption} </li> {/block:Audio} {/block:Posts} </ol> <p id="footer"> {block:PreviousPage} <a href="{PreviousPage}">« Previous</a> {/block:PreviousPage} {block:NextPage} <a href="{NextPage}">Next »</a> {/block:NextPage} <a href="/archive">Archive</a> </p> </body> </html>
Basic Variables
Tumblr media
Navigation
Tumblr media
Jump Pagination
Tumblr media
EXAMPLE
<html> <body> ... {block:Pagination} {block:PreviousPage} <a href="{PreviousPage}">Previous</a> {/block:PreviousPage} {block:JumpPagination length="5"} {block:CurrentPage} <span class="current_page">{PageNumber}</span> {/block:CurrentPage} {block:JumpPage} <a class="jump_page" href="{URL}">{PageNumber}</a> {/block:JumpPage} {/block:JumpPagination} {block:NextPage} <a href="{NextPage}">Next</a> {/block:NextPage} {/block:Pagination} </body> </html>
Pages
Tumblr media
Permalink Navigation
Tumblr media
Go to THIS site to see more
117 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media
världshav | static preview & code
features:
contained theme, height is responsive so it fits any screen
250px/300px/350px/400px posts
5 optional links
sidebar w/ icon links (more icons here if u wanna change them) appears on scroll
hover post info + inverted tumblr controls
optional:
white lightbox
small cursor
fade posts in (posts fade in when the page loads)
credits: soundcloud player and video resizing script from @shythemes​
Please do not steal any of this code & do not edit the credit. Like/reblog if using // thank you!
921 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media
Hey guys! This action sharpness is a bit strong, and highlights all traces of the photo. Use in HQ images! I hope you like it, and enjoy! Take here. And please, if you take, like or reblog this post. Another example [x] ♥
892 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media
Adobe Photoshop - (CS5 [x] [x] - CS6 [x] [x])
image editor
create gifs
among other functions
Adobe Audition - (CS6 [x] [x])
editor audio files
mixing
basically does everything with an audio
Adobe Dreamweaver - (CS6 [x] [x] - CC [x])
software for creating websites
Adobe InDesign - (CS6 [x] [x] - CC [x] [x])
eBooks
magazines
books
newspapers
Adobe Illustrator - (CS6 [x] [x] - CC [x])
vector editor
can be integrated with Ps, Dreamweaver and After Effects
among other functions
Adobe After Effects - (CS6 [x] [x] - CC [x] [x])
special effects in videos
is used with adobe premiere
Adobe Premiere Pro - (CS6 [x] [x] - CC [x] [x])
editing and creating videos
other functions related to video
(I’ll soon be adding other adobes and their functions)
I hope you enjoy and use, give like or reblog to download, thanks
7K notes · View notes
enmitygoddess · 9 years ago
Photo
Going to use the lower left hair for GoT sim purposes hihihi
Tumblr media
Hairs [mini] dump #45 - Momo SKYsims hairs FIX
CAS thumbnails Fixed by Momo Hair texture by Shockshame (but I did it a little smoother) and I started use Pastry-Box controls (long time ago ._.).
DOWNLOAD Sky 84 | Sky 182 Sky 186 | Sky 187
538 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media
My new sim! 
[No name yet]
I’ve downloaded S-Club’s skin and other cc’s, but some wont work. Except for the skin. 
I actually love how flexible you can be with customizing your sim’s look. Also, the lighting is rendered pretty well compared to sims 3. I don’t really need to dodge or burn so much. 
I’m enjoying sims 4 so far, but probably, i’d stick more to the gameplay for now.
0 notes
enmitygoddess · 9 years ago
Text
ohh thank youuuu i downloaded some cc from sclub too 
i cant believe i forgot most creators... 
Hello Sims 4!
I’ve been so wrecked all these years. It has been 2 years since I last played sims 3. I bought a brand new laptop recently, and installed sims 4! 
I’d like to thank my followers for staying with me and also to @nisukiye who checked with me now and then. 
Now im back to simming and I upgraded (not really sure) to sims 4!
PS please send me good mods and sliders! I’m so excited to play again! 
7 notes · View notes
enmitygoddess · 9 years ago
Text
Hello Sims 4!
I’ve been so wrecked all these years. It has been 2 years since I last played sims 3. I bought a brand new laptop recently, and installed sims 4! 
I’d like to thank my followers for staying with me and also to @nisukiye who checked with me now and then. 
Now im back to simming and I upgraded (not really sure) to sims 4!
PS please send me good mods and sliders! I’m so excited to play again! 
7 notes · View notes
enmitygoddess · 9 years ago
Photo
Tumblr media
CLIENT SIGS
0 notes
enmitygoddess · 9 years ago
Photo
Tumblr media Tumblr media Tumblr media
1 note · View note