Jump to content

Maiden Cops


Recommended Posts

Posted (edited)

https://store.steampowered.com/app/2012670/Maiden_Cops/

 

A fun beat 'em up that got released about a month ago, and it features a LOT of fan service, but no nudity whatsoever.

 

LIST OF MODS SO FAR:

 

Nude Meiga (+icons): https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7209532

 

Extra Fan Service (for playables): https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7125309

 

True Topless enemies: https://www.loverslab.com/topic/239663-maiden-cops/#findComment-7052397 (this mod makes those who attack with their bras no longer cover their tits while doing so)

 

Nude Angela & Lina: https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7094529

 

Nude Shyla (bondage style): https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7103213

 

Topless Vitoria: https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7172315

 

Nude Oni Sisters: https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7187172

 

Nude Belinda & Lina: https://www.loverslab.com/topic/239663-maiden-cops/page/2/#findComment-7194050

 

Nude Lenora & Silky: https://www.loverslab.com/topic/239663-maiden-cops/page/3/#findComment-7236051

 

Topless Luiza: https://www.loverslab.com/topic/239663-maiden-cops/page/3/#findComment-7253416

 

--------------------------------

 

I'll keep updating this as the list grows. Thanks to @Aagie for all the hard work.

 

 

Edited by ClosetOfDoom
Posted

I'm not really interested enough to buy and download the game just to extract some sprites for you, so instead, I'll try and point you in the right direction so you can do it yourself.

 

Their itch.io page claims the game was made in Unity, so you can probably just use Asset Studio and Unity Asset Bundle Extractor Avalonia. If you're not used to GitHub, the downloads are usually near the top, on the right hand side, listed under "Releases"

 

You use Asset Studio to browse through the game's assets, and find the Sprites you want to edit; usually in the form of "Texture2D" files, then once you know what those files are called, you find them with UABEA, and extract them as PNGs. Then after you make whatever edits you want, you use UABEA again to import your new edited images.

 

I'd recommend making some simple test edits to confirm everything works before you go all in on editing. There might be some unique quirks to work around that aren't obvious at first glance. And make some backups of the vanilla game's files.

 

If you have more questions. I can try to help answer them.

Posted
1 hour ago, Tehman4 said:

I'm not really interested enough to buy and download the game just to extract some sprites for you, so instead, I'll try and point you in the right direction so you can do it yourself.

 

Their itch.io page claims the game was made in Unity, so you can probably just use Asset Studio and Unity Asset Bundle Extractor Avalonia. If you're not used to GitHub, the downloads are usually near the top, on the right hand side, listed under "Releases"

 

You use Asset Studio to browse through the game's assets, and find the Sprites you want to edit; usually in the form of "Texture2D" files, then once you know what those files are called, you find them with UABEA, and extract them as PNGs. Then after you make whatever edits you want, you use UABEA again to import your new edited images.

 

I'd recommend making some simple test edits to confirm everything works before you go all in on editing. There might be some unique quirks to work around that aren't obvious at first glance. And make some backups of the vanilla game's files.

 

If you have more questions. I can try to help answer them.

I'm aware of the tools, but I also know you kind of need to know what's what to use them. I have no clue as to the terms or even file names to be able to use those tools, I apologize. I've only edited png files, bmp files and gif files so far, and those are all straight forward.

Posted (edited)

Trust me, It's not as complicated as it seems at first glance. I'll give you a more in-depth run-through, and maybe that'll help you figure things out for the game you want to work on. I'll put everything into a spoiler, because it'll probably take up a lot of space.

Spoiler

I'm going to use Momodora: Moonlit Farewell as my example game, it's another game made in Unity, that uses 2D sprites, so it should be pretty similar to Maiden Cops.

I've got more in-depth observations in an older thread I made, though everything you need should be right down here.

I've got the opposite problem of you, where I can't draw to save my life, but I'm familiar enough with the inner workings of games to tinker around a little.

 

The first step of course is to get to the files you want to edit. Assuming you bought the game through Steam, it'll be somewhere in your Steamapps folder. If you just right click the game in Steam, you can go to "Manage > Browse Local Files" and it'll take you straight there.

It should look something like this:

explorer_YK8NQCzbiU.png.2f4e1f05bdd33e3c90f7875ece2da7a6.png

The game's .exe file, and a folder with the same name plus "_Data" at the end. Or something similar.

Obviously, you want to open that Data folder, because that's where all the games assets are stored.

And you'll also want AssetStudioGUI open at this point, because next you're going use it to read whats inside all the files in the Data folder.

jWHwE1K7nq.png.f48cac7358029f63b865304587795d47.png

In the case of Momodora, there's hundreds of files in here, because it's a Metroidvania game. A Beat-em-Up like Maiden Cops probably has far less, though in the end it doesn't really matter how many .assets files there are.

 

Now that AssetStudio has assets to look at, you should switch to the Asset List, and start looking.

AssetStudioGUI_HbYYcNa3oM.png.38f8249ecad522fe5d104f3e8acdbe17.png

I recommend searching by type, because then you can just go through every single Texture2D until you find exactly what you're looking for; but you can try filtering by Filename too, if you want to try to speed up the process.

The filenames are simply what the developers called them internally. So it might be as simple as searching the name of a character, and being able to pull up all their sprites.

 

And yes, I know that they are referred to as "Sprites" and that there is a file type called "Sprite." Just trust me when I say you want Texture2D files, instead.

 

Once you've found a file you'd like to edit:

sxX1paEP0S.png.b1b1b1cfb0f4c6c3dd34ae20e49ea130.png

Make a note of which .asset file contains the file you want to edit, and the exact filename of the asset, too.

You can either continue to search for more files you'd like to edit, or move onto extraction.

Often times similar assets are kept in the same files, so if you find a sprite for one character, there's a good chance all of their sprites are in the same file.

 

Your time with AssetStudio is done now; it's time to move to UABEA.

All you gotta do is take the file that you highlighted from AssetStudio, and drag it into UABEA.

explorer_dpB0FrvXfI.png.e62b7a433712f5a957ee3836175ad428.png

In my case, "sharedassets217.assets" was the only file with the number 217. But sometimes there's more than one. In that case, just select all of the files with the same number and drag them in together.

That'll open up an "Assets Info" window with all the assets contained in that file. You've just gotta find the asset(s) you want to extract now.

explorer_zbC16ioETq.png.67c345588604b9da5c4d1a9938e5ab1b.png

You can export it where ever you want. I usually make a separate folder, inside the game's Data folder, that I extract everything to, so that it's all in the same place.

It won't effect the game, regardless of where you put it.

And it extracts as a .png, so now you can do whatever you want to it. Here's what I exported while making this tutorial:

FairyQueen_tex2d_0-sharedassets217.assets-21.png.df315088412ffda4a918372f90564ff7.png

Voila. I'd make a backup of the untouched asset as this point, as well. Just in-case I really screw up during editing.

But of course. We're not quite done yet. You've still gotta put it back into the game.

 

So after you've made your edit, you simply go back into UABEA, open the same .assets file again, and find the file you extracted earlier.

Importing is almost exactly the same as exporting, so no worries.

explorer_CJDTTM79oA.png.41b1bf32319bfeae2237a3e026f668db.png

After you've hit save on the Texture Edit, a little "*" should show up next to the edited asset.

Then once you're done importing textures, and have made a backup copy of the original .assets file. You go up to "File" and hit "Save" in the main "Assets Info" window.

 

And then you're all done!

At least, assuming it works correctly once you open the game to test it.

Each game is built a little differently, and might have it's own unique quirks to figure out.

 

For example; Momodora has a system which lets the protagonist use multiple colour Palettes, which means her sprites need to be coloured with very specific colours to show up correctly when actually in-game. So I had to find where the Palette data was stored too, and figure out how the game applies that data to the textures.

 

I have no idea what troubles you might run into with Maiden Cops, if anything at all.

Hopefully that helps.

But again, if something comes up that I didn't cover, I can try and see how else I can help.

Edited by Tehman4
Posted
On 10/25/2024 at 3:59 PM, ClosetOfDoom said:

https://store.steampowered.com/app/2012670/Maiden_Cops/

 

A fun beat 'em up that got released about a month ago, and it features a LOT of fan service, but no nudity whatsoever.

 

I'd be down to edit the sprites if anyone can export the sprite sheets to PNGs for me, as well as convert them back when I'm done.

 

Let me know if anyone's down for that.

 

I had my eye on this game as a possible next project after I finished up TMNT, so I did play with it just a bit.

 

Yes, this game can be modded.

 

Original file:

 

Spoiler

fanservice2.png.f49ac41e0546a88ee66fe8b1ce799d9c.png

 

A quick edit of it:

 

Spoiler

fanservice2edit.png.9547d69918d9552afd5bb1799a0ef6a8.png

 

How it looks in game:

 

Spoiler

ezgif-5-3c08dedae0.png.95446d7de6945df89f59f2ffcedb04b6.png

 

There doesn't seem to be a single sprite sheet for each character in this one, instead it seems broken down by each move. That is far easier to test each animation, but it is a lot of textures to find, extract and repackage.

 

The biggest issue I see with this modding this one is that a bunch of animations have the exact same names.
The taunt/fan service move? Called fanservice1/fanservice2 for ALL THREE CHARACTERS, and for ALL THE COSTUMES. So, noting the path ids becomes quite important.

 

How crazy do you want to go with this? Just the player characters in the default outfits? Or everything possible?

 

Posted
35 minutes ago, Aagie said:

 

I had my eye on this game as a possible next project after I finished up TMNT, so I did play with it just a bit.

 

Yes, this game can be modded.

 

Original file:

 

  Hide contents

fanservice2.png.f49ac41e0546a88ee66fe8b1ce799d9c.png

 

A quick edit of it:

 

  Hide contents

fanservice2edit.png.9547d69918d9552afd5bb1799a0ef6a8.png

 

How it looks in game:

 

  Hide contents

ezgif-5-3c08dedae0.png.95446d7de6945df89f59f2ffcedb04b6.png

 

There doesn't seem to be a single sprite sheet for each character in this one, instead it seems broken down by each move. That is far easier to test each animation, but it is a lot of textures to find, extract and repackage.

 

The biggest issue I see with this modding this one is that a bunch of animations have the exact same names.
The taunt/fan service move? Called fanservice1/fanservice2 for ALL THREE CHARACTERS, and for ALL THE COSTUMES. So, noting the path ids becomes quite important.

 

How crazy do you want to go with this? Just the player characters in the default outfits? Or everything possible?

 

Probably just player characters in default, I'd say.

  • 3 weeks later...
  • 3 weeks later...
Posted
On 11/17/2024 at 11:27 AM, ClosetOfDoom said:

The other two characters are included in that .zip.

Oh? I thought you only did the one 🤔

I'll go back later tonight and check it out again 

Posted
8 minutes ago, MisfitMazza said:

Oh? I thought you only did the one 🤔

I'll go back later tonight and check it out again 

I thought you meant export the default sprites of the other characters. Only the one set has been edited, not even a full character yet.

Posted
On 10/30/2024 at 5:42 PM, ClosetOfDoom said:

image.png.9dd3e6f10fab09995f433bcd9565516a.pngTried my hand at it. Bit tedious but didn't take too long for these ones.

The nipple on the left should be moved a bit more to the left. good job tho 

  • 6 months later...
Posted (edited)

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

Spoiler

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Edited by Aagie
Grammar
Posted
16 minutes ago, Aagie said:

我做了一个小模型,让那些脱下比基尼上衣并攻击你的女孩实际上会炫耀她们的乳房。

 

  隐藏内容

上身无遮瑕3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cos True Topless.zip 174.16 千字节 · 0 次下载

 

要使用此 mod,请将 .exe 文件放入 Maiden Cops 主文件夹(其中包含 Maiden Cops.exe 的文件夹)并运行它。

 

就这些了,我正在考虑要不要全力投入《Maiden Cops》,或者开始学习 Pixel Game Maker 来制作我自己的游戏。这可能取决于这个模组的受欢迎程度。

love it

Posted
1 hour ago, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Hide contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 1 download

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Looks great!

We are def gonna need your expertise on the upcoming Marvel Beat em up game Cosmic Invasion :P

Posted
2 hours ago, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Hide contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 2 downloads

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Yooo, that's awesome.

Posted (edited)

 

On 6/8/2025 at 9:27 AM, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Hide contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 6 downloads

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

This is excellent! How to install the MaidenCopsDefaultOutfits.zip from your previous posts? Those look really nice too.

Edited by Voltanis
Posted
On 6/8/2025 at 9:27 AM, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Hide contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 7 downloads

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Looks fantastic!

  • 3 weeks later...
Posted
On 6/8/2025 at 1:27 PM, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Reveal hidden contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 19 downloads

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Amazing work as always! Really enjoy this game and love the addition of your sprite work. This game is built for these kind of mods ;) If you decide to continue I'm sure many, myself included, will be thrilled.

  • 3 weeks later...
Posted

 

On 6/8/2025 at 4:27 PM, Aagie said:

I made a small mod that has the girls who take off and attack you with the bikini tops actually show off the tits.

 

  Hide contents

topless3.png.7317ed4e9761d04db75a7e8f3c6afe07.png

 

Maiden Cops True Topless.zip 174.16 kB · 24 downloads

 

To use this mod, drop the .exe file in the Maiden Cops main folder (the one with Maiden Cops.exe in it) and run it.

 

This is all for now, I'm deciding if I want to go 'all in' on Maiden Cops, or start learning Pixel Game Maker to make a game of my own. It might depend of how popular this mod is.

Indeed it's great

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...