Welcome to this comprehensive tutorial on character modding for 100% 오렌지 주스! If you’re feeling overwhelmed by the technical terminology and unsure where to begin, 두려워하지 마라! This step-by-step guide is tailor-made for beginners, designed to walk you through the process using straightforward language. Regardless of your experience level with modding, you’ll find this tutorial accessible and easy to follow.
시작하기
Before we dive in, ensure you have the following tools ready:
- An archiver software like WinRAR or 7-Zip.
- An image editor that can handle .dds images (예를 들어, paint.net or any other program of your choice).
- Your preferred image editor or art program.
- A word processor (Notepad will suffice).
- A pinch of patience.
Please note that this guide primarily focuses on replacing basic textures for characters. If you are already an intermediate or advanced OJ modder seeking more intricate information, like voice, hair color, or cosmetics replacement, this tutorial might not be suitable for your needs.
1부: Creating Your Mod Folder
중요한 것 먼저. Navigate here:
씨:\프로그램 파일 (x86)\Steam\steamapps\common\100 Orange Juice\mods
Go to the location where you installed OJ on your computer and locate the directory labeled “개조”.
Create a new directory inside the “개조” folder and give it a name of your choice. 축하해요, you have successfully completed the first phase!
다음, access the newly created mods folder and create an additional folder called “단위”. This will be used to house your sprites when the time comes.
Once it looks like this, you’re done for now — but we’ll come back to this later.
Part Two: Unpacking Your Images
Navigate here:
씨:\프로그램 파일 (x86)\Steam\steamapps\common\100 Orange Juice\data
이전과 동일합니다, but now you want to go to the folder named data.
You will encounter a series of .pak files, presented as follows. The assets of 100% Orange Juice are compressed into .pak format. 따라서, you will need to extract these files manually to access them.
Proceed to locate the units.pak file and utilize your archiver software to open it.
There are many .dat files in the repository. 그러므로, continue exploring to identify the character that needs to be replaced in your mod. If you have trouble locating them, refer to their unit ID in this resource.
Did you successfully locate the files? 훌륭한! Now select the files with names that follow the specified format: [Specify the format here].
name_00_00.dat
…
name_00_05.dat
The provided graphics represent the default sprites for the selected unit. To access the alternate color schemes and costumes, refer to the files labeled “name_01_00.dat” 등. You may drag or copy and paste these files to your desktop or other accessible location for convenient access.
지금, rename the .dat extensions to .dds.
Make sure you have filetype extensions visible, and just click on them to edit them. Easy enough, just make sure the file names themselves remain unchanged.
You’ve successfully extracted your character sprites!
Part Three: Editing Your Images
Preparing For Editing
시작하려면, launch paint.net and open each of the recently created .dds files.
It is acceptable to use any suitable software for this task, but I personally recommend paint.net due to its user-friendly interface, particularly when viewing and editing images in the .dds format.
일단 완료되면, utilize the Ctrl+Shift+S keyboard shortcut or access the “다른 이름으로 저장…” option under the File menu.
Ensure that you save these modified sprites as .png files, as this will facilitate future editing endeavors. Repeat this process for all your current sprites.
지금, recall the units folder you established earlier.
Integrate your new .png images into your mod’s units folder. You can accomplish this either by directly saving them there or by performing a move operation.
Making It Real
Once you have completed all of the previous steps, you are ready to begin the process of opening your sprites in the editing or art program of your choice. The program you choose should have support for layers and transparency, which excludes options like MS Paint.
이 시점부터, you have complete creative freedom over your mod. You can add new features, replace the sprites with those from another game, or even create new sprites from scratch. If you decide to replace an entire sprite, it is advisable to set the existing sprite to low opacity first, so that it can be used as a size reference. 완료되면, you can delete the reference sprite.
Make sure that all sprites are saved with a transparent background.
Now the sky is the limit and you are ready to get creative!
Part Four: Getting The Mod to Work!
Once you have finished modifying your sprites, you need to ensure that your mod is integrated into the game. In order for 100% Orange Juice mods to work properly, you need to provide a .json file that tells the game which assets to replace.
이를 수행하려면, open your favorite word processor and create a new document.
Then paste the provided code into the newly created document:
{ { "ModDefinition": { "이름": "---", "description": "---", "author": "---", "system_version": 2, "contest": 거짓 }, "ModReplacements": { "텍스처": [ "units/name_00" ] } }
Please ensure you comprehend the instructions provided. Below are the modifications required:
- 이름: Select a title of your preference for your modification.
- description: 이 섹션에서는, elucidate the functionalities of your mod. 예를 들어, you can state, “Introduces a stylish hat for Marc,” 또는 “Substitutes Poppo with a cabbage.”
- author: Indicate the creator of the mod, which is yourself.
It is important to note that numerous other aspects can be customized using the .json configuration, but for the present, we will retain only the essential elements. Please refrain from removing any of the provided quotations.
The crucial step is to make the following adjustment under the “텍스처” 부분: Substitute “units/name_00” with the specific unit ID corresponding to your sprite. 예를 들어, in this scenario, mine would be “units/sora_00”.
You need not enumerate each individual pose that has been replaced. Just providing the name and costume will suffice, and the game will take care of the rest automatically.
Once you have confirmed that everything appears accurate, proceed to save your text document as “mod.json”.
Note that word processors such as Notepad++ or Visual Studio will facilitate this process seamlessly. 하지만, if you are using a standard Notepad application, simply save the file as “mod.txt” first and then rename it to “mod.json”.
마지막으로, place the completed “mod.json” file into your mod folder as shown below: [Insert path to mod folder here].
Upon achieving the prescribed folder configuration, the task concludes, and the subsequent step entails the initiation of OJ to assess its functionality. It is imperative to verify the mod’s activation status within the settings menu.
To promptly evaluate its efficacy, one may inspect the character in the Avatar settings or commence a personalized singleplayer game.
Tldr
If you don’t feel like reading all that, here is a condensed (but much less detailed) version of this guide.
- Go to C:\프로그램 파일 (x86)\Steam\steamapps\common\100 Orange Juice\mods
- Make a new folder inside 개조, named 단위
- Go to C:\프로그램 파일 (x86)\Steam\steamapps\common\100 Orange Juice\data
- 열려 있는 units.pak with WinRAR or 7-Zip
- Look for the character you want to replace, then copy the files name_00_00.dat ~을 통해 name_00_05.dat to your desktop
- Rename your .dat file extensions to .dds
- Open your .dds images in paint.net, and export them as .pngs in your mod’s 단위 접는 사람
- Edit your .png images however you wish
- Make a new text document
- Paste the following into your text document:
{ { "ModDefinition": { "이름": "---", "description": "---", "author": "---", "system_version": 2, "contest": 거짓 }, "ModReplacements": { "텍스처": [ "units/name_00" ] } }
- Replace the — with whatever you want (don’t remove any quotes)
- Replace name in “units/name_00” with your character’s unit ID
- Save your text document under the name mod.json and put it in your mod’s main folder
- Launch 100% OJ to see if it works, make sure your mod is enabled in the settings
추가의: Replacing Hyper Card Art
If your intention is to create a lighthearted modification for your private enjoyment, you may cease perusing further. The subsequent section of this guide will exclusively concentrate on adding final touches to your modification.
이 시점에서, you might interject, “What about the Unit and Hyper cards? The artwork on these cards no longer corresponds to my character!”
안심하세요, the replacement of card art can also be accomplished with ease! Regard this segment as an assessment of your knowledge and progress up to this stage.
첫 번째, make a new folder in your mod directory named cards.
그 다음에, go back to the data folder from earlier, and look for the file cards.pak. When you look inside, you’ll see those .dat files again, but now they seem to come in pairs: “128” 그리고 “256”. What gives?
Cards require two different resolutions in order to display properly. One is 128×128 pixels in size, and the other is 256×256 pixels in size. But you don’t have to extract both.
그래서, look for the cards that you want to replace (use this to find the correct ID).
Copy the larger one from the archive — 예를 들어. cardname256.dat — and rename it to .dds. Then export your .dds again as a .png. Same process as last time.
지금, place your .png in your newly made cards folder.
Make whatever changes to it you want to make. After you save it, resize it to 128×128 픽셀. Save another version of it ending in 128.png.
이 시점에서, your cards folder might look something like this:
Ready to move on?
Go back and open your mod.json file again.
아래에 “텍스처”, add a comma after your unit from earlier, and type your card(에스) in like this:
"ModReplacements": { "텍스처": [ "units/name_00", "cards/cardname" ] }
그래서, 내 경우에는, it would be “cards/detarame”, “cards/sora”. No need to add the numbers.
(Make sure that the last texture on the list does not end with a comma.)
Save the changes you’ve made to your .json file, and check to see if it worked! (If you’ve left OJ running, remember to click “REFRESH” in the Mods tab.)
축하해요! You can replace the art of any card in the game with this method, so have fun!
추가의 2: Publishing to Workshop
You’ve decided you want to share your mod with the world (or maybe just your friends, so you can play online with your new characters). Not a problem!
그러기 위해서는, you will need a thumbnail picture named preview.png within your main mod directory. 이상적으로는, it should be in a 16:9 resolution, and it must be less than 1 MB in file size. This is what will be shown on the Workshop page (though you can always change it later).
Once you have that set up, just open up 100% OJ and click on the “Publish” button from the Mods tab. It’ll do the work for you.
When it’s done uploading your mod, it will redirect you to the Workshop page you just made. From there you can edit the description, visibility, preview images, required DLC, whatever else you want to do. Keep in mind that the visibility will default to public when uploaded.
이것이 오늘 우리가 공유하는 모든 것입니다. 100% 오렌지 주스 가이드. 이 가이드는 원래 작성자가 작성하고 작성했습니다. lurk. 이 가이드를 업데이트하지 못한 경우, 다음을 수행하여 최신 업데이트를 찾을 수 있습니다. 링크.