Creating New Types

From PMDOWiki
Revision as of 22:36, 25 August 2023 by Trio (talk | contribs) (Created page with "In this walkthrough, we'll add a new type — Sound — into PMDO, which is based on the specification described [https://pokemon-xenoverse.fandom.com/wiki/Sound_(type) here]. Make your game is set to a mod in Modding Intro so that you’re editing a mod instead of the base game. == Creating the New Type == Begin by creating a new type in the Element list. frameless 200px Click on '''Add''' and...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

In this walkthrough, we'll add a new type — Sound — into PMDO, which is based on the specification described here. Make your game is set to a mod in Modding Intro so that you’re editing a mod instead of the base game.

Creating the New Type

Begin by creating a new type in the Element list.

Click on Add and set the name to be "sound".

Click OK.

You should see the following page below:

Then do the following steps:

  • Set the Name to be "Sound"
  • Set the Symbol to be "" which represents the unicode \uE093. This will be located next to WaterWater in the PMDO's unicode ordering.

Note: As of 0.7.16, you will need to manually open PMDO/MODS/{MOD_NAME}/Elements/sound.json to add the Symbol ""

Your JSON file for Sound should look similar to below:

{
"Version": "0.7.16.0",
"Object": {
"$type": "RogueEssence.Data.ElementData, RogueEssence",
"Name": {
"DefaultText": "Sound",
"LocalTexts": {}
},
"Comment": "",
"Symbol": ""
}
}

Click on OK and save your progress!

Editing Type Matchups

We will be referencing the chart below:

In the Dev Menu, navigate over to Constants -> Universal.

Under Universal States, click on PMDC.Dungeon.ElementTableState.

Below shows how the Type Matchups are ordered:

Type Ordering
Index Type
0 NoneTypeless
1 BugBug
2 DarkDark
3 DragonDragon
4 ElectricElectric
5 FairyFairy
6 FightingFighting
7 FireFire
8 FlyingFlying
9 GhostGhost
10 GrassGrass
11 GroundGround
12 IceIce
13 NormalNormal
14 PoisonPoison
15 PsychicPsychic
16 RockRock
17 SteelSteel
18 WaterWater

For example, clicking on the second System.Int32[] (Index 1) opens all the effectiveness of BugBug against all other types. The third element (Index 2) which represents DarkDark is shown with an effectiveness of 5 (see table below).

Below is a table of what effectiveness each number represents.

# Representation Effectiveness
0 No effect
3 Not very effective
4 Neutral
5 Super effective