An extensive and detailed guide for creating new relics or modifying existing relics in The Hand of Merlin, written by its game designer Mat.
Creating New Relics
Now that our editor is available to the wider public, 나’d like to write up a few guides on how to create some content in our game for your modding purposes.
이 가이드에서는, 우리’ll talk about implementing 유물!
예를 들어, 우리’ll create Glass Arrow, a Common relic.
What is a Relic?
A relic is an equipable item that grants the bearer some sort of boost. It can be a passive attribute increase, the access to an ability, all sorts of things.
They are found in encounters as random or specific rewards, and can also be bought in Relic Shops, found in most cities in The Hand of Merlin.
To start the creation process, 허락하다’s use the Create Menu (Ctrl+N as a hotkey), and create a new Relic Parameter.
This should be the file you’re greeted with:
그 다음에, make sure you save the new file in the Content\Merlin\Relics folder, to let the game know that your relic exists.
Basic Setup
Relic Identification
그래서, three things we’ll set up first. The Relic’이름, Flavor, and Description.
이름 is just your relic’이름. Think of something fancy. 우리’ll go with Glass Arrow for ours.
설명 is where you’ll describe what the relic does. You can use the tags we talked about in the Abilities guide, 하지만 여기서’s exactly what the text is for Glass Arrow, as an example:
<특별한>{+Attribute Modifiers[0]}</특별한>. <br/><특별한>{-Attribute Modifiers[1]}</특별한>.
그만큼 {Attribute Modifier[엑스]} stuff will be filled in in the future dynamically when we actually set attribute properties to the relic.
Because these are text properties, you have two fill in two fields: 그만큼 Identifier 그리고 끈. This is to make it easier for translations. If you are making a big mod, you might want to have your own identifier naming conventions, 하지만 여기서’s mine: 나는 사용한다 HOM.Relic[RelicName].[범주], where Category is Name, Description or Flavour.
그 다음에, you can set up an 상. Remember that we use .tex files, that you can create from your own PNGs by using the Texture > Create menu (CTRL+SHIFT+T).
Relic Acquisition
A huge aspect of configuring a new Relic is how exactly are players supposed to acquire it.
희박 is its category. This does very little on its own, but `Common` and `Rare` relics can be found in shops (2:1 in most cases), and can be randomly granted in some encounters, including the first one, Camelot. `Unique` we tend to leave to those associated with specific encounters, and `Legendary` is a category we leave for the Grail and the Horn, and its variations.
Gold Cost is the base price of this relic in shops, expressed in gold. Note that some encounters offer discounts to the shops.
마지막으로, none of that matters until you set your Spawn Random 그리고 Spawn Shop booleans – The first allows the relic to be granted at random in encounters, and the latter allows the relic to be found in shops.
Pretty simple stuff, I hope!
Relic Properties
Equipping a Relic allows the bearer to gain access to a series of modifiers, both active and passive.
상태 효과 are passive effects granted by just having the relic equipped. They are granted at the beginning of a match, so if your effect has a decay rule (like Powerful or Vulnerable), they will be lost over the duration of the match, only to be replenished at the start of the next one.
Attribute Modifiers are far simpler. These are alterations to a unit’s base attributes, 좋다 힘 또는 Max Armor. 우리’ll focus on this one for Glass Arrow. 그것’ll look like this:
This is what will be filled in the description, as we talked about in the previous section.
능력 describes the ability associated with this Relic. We call relics with this property “Action Relics”, 그리고 그것’s great for versatility. These can be any ability really, but we usually make 0 AP ones for relics, so keep that in mind if you are looking for something to fit vanilla gameplay.
주문 is like Ability, but here you’ll browse a Spell Parameter, which has some UI information regarding the spell. Also note that adding a Spell to a relic allows anyone to use it, as spells are considered “밖의” the unit.
Equippable determines if the item can be equipped, or it must stay on the stash. If your relic has a spell or a status effect and is non-equippable, the game assumes that it should apply that effect to everyone, 그러니까 그걸 명심해.
Grail, 치받이 그리고 ID: these are some smaller properties that we use for some unique behavior.
- A Grail relic will end the game if you lose it;
- A Upgrade path makes this relic be exchanged for the one listed if you are using the Virtue modifier in Hardmode+
- And an ID can be queried in encounters to see if the player has it. In Marca Hispanica, we check for the Horn ID to see if you carry any variant of Roland’의 경적.
Relics are a great simple addition to test your modding chops. 행운을 빌어요!
이것이 오늘 우리가 공유하는 모든 것입니다. The Hand of Merlin 가이드. 이 가이드는 원래 작성자가 작성하고 작성했습니다. Mibs. 이 가이드를 업데이트하지 못한 경우, 다음을 수행하여 최신 업데이트를 찾을 수 있습니다. 링크.