tModLoader v2024.10
A mod to make and play Terraria mods
|
This is a GlobalNPC native to tML that handles adding Pylon items to NPC's shops, to save on patch size within vanilla. More...
Inherits GlobalNPC.
Public Member Functions | |
override void | ModifyActiveShop (NPC npc, string shopName, Item[] items) |
Allows you to modify the contents of a shop whenever player opens it. If possible, use ModifyShop(NPCShop) instead, to reduce mod conflicts and improve compatibility. Note that for special shops like travelling merchant, the shopName may not correspond to a NPCShop in the NPCShopDatabase Also note that unused slots in items are null while Item.IsAir entries are entries that have a reserved slot (NPCShop.Entry.SlotReserved) but did not have their conditions met. These should not be overwritten. More... | |
override void | ModifyShop (NPCShop shop) |
Allows you to modify existing shop. Be aware that this hook is called just one time during loading. More... | |
override void | Unload () |
Public Member Functions inherited from GlobalNPC | |
virtual void | AI (NPC npc) |
Allows you to determine how any NPC behaves. This will only be called if PreAI returns true. More... | |
virtual void | ApplyDifficultyAndPlayerScaling (NPC npc, int numPlayers, float balance, float bossAdjustment) |
Allows you to customize this NPC's stats when the difficulty is expert or higher. This runs after NPC.value, NPC.lifeMax, NPC.damage, NPC.knockBackResist have been adjusted for the current difficulty, (expert/master/FTW) It is common to multiply lifeMax by the balance factor, and sometimes adjust knockbackResist. Eg: More... | |
virtual void | BossHeadRotation (NPC npc, ref float rotation) |
Allows you to customize the rotation of an NPC's boss head icon on the map. More... | |
virtual void | BossHeadSlot (NPC npc, ref int index) |
Allows you to customize the boss head texture used by an NPC based on its state. Set index to -1 to stop the texture from being displayed. More... | |
virtual void | BossHeadSpriteEffects (NPC npc, ref SpriteEffects spriteEffects) |
Allows you to flip an NPC's boss head icon on the map. More... | |
virtual void | BuffTownNPC (ref float damageMult, ref int defense) |
Allows you to modify the stats of town NPCs. Useful for buffing town NPCs when certain bosses are defeated, etc. More... | |
virtual ? bool | CanBeCaughtBy (NPC npc, Item item, Player player) |
Allows you to determine whether the given item can catch the given NPC. Return true or false to say the given NPC can or cannot be caught, respectively, regardless of vanilla rules. Returns null by default, which allows vanilla's NPC catching rules to decide the target's fate. If this returns false, CombinedHooks.OnCatchNPC is never called. NOTE: this does not classify the given item as an NPC-catching tool, which is necessary for catching NPCs in the first place. To do that, you will need to use the "CatchingTool" set in ItemID.Sets. More... | |
virtual ? bool | CanBeHitByItem (NPC npc, Player player, Item item) |
Allows you to determine whether an NPC can be hit by the given melee weapon when swung. Return true to allow hitting the NPC, return false to block hitting the NPC, and return null to use the vanilla code for whether the NPC can be hit. Returns null by default. More... | |
virtual bool | CanBeHitByNPC (NPC npc, NPC attacker) |
Allows you to determine whether a friendly NPC can be hit by an NPC. Return false to block the attacker from hitting the NPC, and return true to use the vanilla code for whether the target can be hit. Returns true by default. More... | |
virtual ? bool | CanBeHitByProjectile (NPC npc, Projectile projectile) |
Allows you to determine whether an NPC can be hit by the given projectile. Return true to allow hitting the NPC, return false to block hitting the NPC, and return null to use the vanilla code for whether the NPC can be hit. Returns null by default. More... | |
virtual ? bool | CanChat (NPC npc) |
Allows you to determine whether this NPC can talk with the player. Return true to allow talking with the player, return false to block this NPC from talking with the player, and return null to use the vanilla code for whether the NPC can talk. Returns null by default. More... | |
virtual ? bool | CanCollideWithPlayerMeleeAttack (NPC npc, Player player, Item item, Rectangle meleeAttackHitbox) |
Allows you to determine whether an NPC can be collided with the player melee weapon when swung. Use CanBeHitByItem(NPC, Player, Item) instead for Guide Voodoo Doll-type effects. More... | |
virtual ? bool | CanFallThroughPlatforms (NPC npc) |
Allows you to determine how and when an NPC can fall through platforms and similar tiles. Return true to allow an NPC to fall through platforms, false to prevent it. Returns null by default, applying vanilla behaviors (based on aiStyle and type). | |
virtual ? bool | CanGoToStatue (NPC npc, bool toKingStatue) |
Whether this NPC can be teleported to a King or Queen statue. Return true to allow the NPC to teleport to the statue, return false to block this NPC from teleporting to the statue, and return null to use the vanilla code for whether the NPC can teleport to the statue. Returns null by default. More... | |
virtual bool | CanHitNPC (NPC npc, NPC target) |
Allows you to determine whether an NPC can hit the given friendly NPC. Return false to block the NPC from hitting the target, and return true to use the vanilla code for whether the target can be hit. Returns true by default. More... | |
virtual bool | CanHitPlayer (NPC npc, Player target, ref int cooldownSlot) |
Allows you to determine whether an NPC can hit the given player. Return false to block the NPC from hitting the target. Returns true by default. CooldownSlot determines which of the player's cooldown counters (ImmunityCooldownID) to use, and defaults to -1 (ImmunityCooldownID.General). More... | |
virtual void | ChatBubblePosition (NPC npc, ref Vector2 position, ref SpriteEffects spriteEffects) |
virtual bool | CheckActive (NPC npc) |
Whether or not to run the code for checking whether an NPC will remain active. Return false to stop the NPC from being despawned and to stop the NPC from counting towards the limit for how many NPCs can exist near a player. Returns true by default. More... | |
virtual bool | CheckDead (NPC npc) |
Whether or not an NPC should be killed when it reaches 0 health. You may program extra effects in this hook (for example, how Golem's head lifts up for the second phase of its fight). Return false to stop the NPC from being killed. Returns true by default. More... | |
virtual void | DrawBehind (NPC npc, int index) |
When used in conjunction with "npc.hide = true", allows you to specify that this npc should be drawn behind certain elements. Add the index to one of Main.DrawCacheNPCsMoonMoon, DrawCacheNPCsOverPlayers, DrawCacheNPCProjectiles, or DrawCacheNPCsBehindNonSolidTiles. More... | |
virtual void | DrawEffects (NPC npc, ref Color drawColor) |
Allows you to add special visual effects to an NPC (such as creating dust), and modify the color in which the NPC is drawn. More... | |
virtual ? bool | DrawHealthBar (NPC npc, byte hbPosition, ref float scale, ref Vector2 position) |
Allows you to control how the health bar for the given NPC is drawn. The hbPosition parameter is the same as Main.hbPosition; it determines whether the health bar gets drawn above or below the NPC by default. The scale parameter is the health bar's size. By default, it will be the normal 1f; most bosses set this to 1.5f. Return null to let the normal vanilla health-bar-drawing code to run. Return false to stop the health bar from being drawn. Return true to draw the health bar in the position specified by the position parameter (note that this is the world position, not screen position). More... | |
virtual void | DrawTownAttackGun (NPC npc, ref Texture2D item, ref Rectangle itemFrame, ref float scale, ref int horizontalHoldoutOffset) |
Allows you to customize how a town NPC's weapon is drawn when the NPC is shooting (the NPC must have an attack type of 1). scale is a multiplier for the item's drawing size, item is the Texture2D instance of the item to be drawn, itemFrame is the section of the texture to draw, and horizontalHoldoutOffset is how far away the item should be drawn from the NPC. More... | |
virtual void | DrawTownAttackSwing (NPC npc, ref Texture2D item, ref Rectangle itemFrame, ref int itemSize, ref float scale, ref Vector2 offset) |
virtual void | EditSpawnPool (IDictionary< int, float > pool, NPCSpawnInfo spawnInfo) |
Allows you to control which NPCs can spawn and how likely each one is to spawn. The pool parameter maps NPC types to their spawning weights (likelihood to spawn compared to other NPCs). A type of 0 in the pool represents the default vanilla NPC spawning. More... | |
virtual void | EditSpawnRange (Player player, ref int spawnRangeX, ref int spawnRangeY, ref int safeRangeX, ref int safeRangeY) |
Allows you to modify the range at which NPCs can spawn around the given player. The spawnRanges determine that maximum distance NPCs can spawn from the player, and the safeRanges determine the minimum distance. More... | |
virtual void | EditSpawnRate (Player player, ref int spawnRate, ref int maxSpawns) |
Allows you to modify the chance of NPCs spawning around the given player and the maximum number of NPCs that can spawn around the player. Lower spawnRates mean a higher chance for NPCs to spawn. More... | |
virtual void | EmoteBubblePosition (NPC npc, ref Vector2 position, ref SpriteEffects spriteEffects) |
virtual void | FindFrame (NPC npc, int frameHeight) |
Allows you to modify the frame from an NPC's texture that is drawn, which is necessary in order to animate NPCs. More... | |
virtual ? Color | GetAlpha (NPC npc, Color drawColor) |
Allows you to determine the color and transparency in which an NPC is drawn. Return null to use the default color (normally light and buff color). Returns null by default. More... | |
virtual void | GetChat (NPC npc, ref string chat) |
Allows you to modify the chat message of any NPC that the player can talk to. More... | |
virtual void | HitEffect (NPC npc, NPC.HitInfo hit) |
Allows you to make things happen whenever an NPC is hit, such as creating dust or gores. Called on local, server and remote clients. Usually when something happens when an npc dies such as item spawning, you use NPCLoot, but you can use HitEffect paired with a check for if (npc.life <= 0) to do client-side death effects, such as spawning dust, gore, or death sounds. | |
virtual void | LoadData (NPC npc, TagCompound tag) |
Allows you to load custom data that you have saved for the given npc. More... | |
virtual void | ModifyActiveShop (NPC npc, string shopName, Item[] items) |
Allows you to modify the contents of a shop whenever player opens it. If possible, use ModifyShop(NPCShop) instead, to reduce mod conflicts and improve compatibility. Note that for special shops like travelling merchant, the shopName may not correspond to a NPCShop in the NPCShopDatabase Also note that unused slots in items are null while Item.IsAir entries are entries that have a reserved slot (NPCShop.Entry.SlotReserved) but did not have their conditions met. These should not be overwritten. More... | |
virtual bool | ModifyCollisionData (NPC npc, Rectangle victimHitbox, ref int immunityCooldownSlot, ref MultipliableFloat damageMultiplier, ref Rectangle npcHitbox) |
Allows you to modify the NPC's
, damage multiplier, and hitbox. Useful for implementing dynamic damage hitboxes that change in dimensions or deal extra damage. Returns false to prevent vanilla code from running. Returns true by default. More... | |
virtual void | ModifyGlobalLoot (GlobalLoot globalLoot) |
Allows you to add and modify global loot rules that are conditional, i.e. vanilla's biome keys and souls. The Basic NPC Drops and Loot 1.4 Guideexplains how to use this hook to modify npc loot. More... | |
virtual void | ModifyHitByItem (NPC npc, Player player, Item item, ref NPC.HitModifiers modifiers) |
Allows you to modify the damage, knockback, etc., that an NPC takes from a melee weapon. Runs on the local client. More... | |
virtual void | ModifyHitByProjectile (NPC npc, Projectile projectile, ref NPC.HitModifiers modifiers) |
Allows you to modify the damage, knockback, etc., that an NPC takes from a projectile. More... | |
virtual void | ModifyHitNPC (NPC npc, NPC target, ref NPC.HitModifiers modifiers) |
Allows you to modify the damage, knockback, etc., that an NPC does to a friendly NPC. More... | |
virtual void | ModifyHitPlayer (NPC npc, Player target, ref Player.HurtModifiers modifiers) |
Allows you to modify the damage, etc., that an NPC does to a player. More... | |
virtual void | ModifyHoverBoundingBox (NPC npc, ref Rectangle boundingBox) |
Allows you to modify the bounding box for hovering over the given NPC (affects things like whether or not its name is displayed). More... | |
virtual void | ModifyIncomingHit (NPC npc, ref NPC.HitModifiers modifiers) |
Allows you to use a custom damage formula for when an NPC takes damage from any source. For example, you can change the way defense works or use a different crit multiplier. More... | |
virtual void | ModifyNPCLoot (NPC npc, NPCLoot npcLoot) |
Allows you to add and modify NPC loot tables to drop on death and to appear in the Bestiary. The Basic NPC Drops and Loot 1.4 Guideexplains how to use this hook to modify npc loot. This hook only runs once per npc type during mod loading, any dynamic behavior must be contained in the rules themselves. More... | |
virtual void | ModifyNPCNameList (NPC npc, List< string > nameList) |
Allows you to modify the list of names available to the given town NPC. | |
virtual void | ModifyShop (NPCShop shop) |
Allows you to modify existing shop. Be aware that this hook is called just one time during loading. More... | |
virtual ITownNPCProfile | ModifyTownNPCProfile (NPC npc) |
Allows you to set the town NPC profile that a given NPC uses. More... | |
virtual void | ModifyTypeName (NPC npc, ref string typeName) |
Allows you to modify the type name of this NPC dynamically. | |
virtual bool | NeedSaving (NPC npc) |
Allows you to make a npc be saved even if it's not a townNPC and NPCID.Sets.SavesAndLoads[npc.type] is false. NOTE: A town NPC will always be saved (except the Travelling Merchant that never will). NOTE: A NPC that needs saving will not despawn naturally. More... | |
virtual void | OnCaughtBy (NPC npc, Player player, Item item, bool failed) |
Allows you to make things happen when the given item attempts to catch the given NPC. More... | |
virtual void | OnChatButtonClicked (NPC npc, bool firstButton) |
Allows you to make something happen whenever a button is clicked on this NPC's chat window. The firstButton parameter tells whether the first button or second button (button and button2 from SetChatButtons) was clicked. More... | |
virtual void | OnGoToStatue (NPC npc, bool toKingStatue) |
Allows you to make things happen when this NPC teleports to a King or Queen statue. This method is only called server side. More... | |
virtual void | OnHitByItem (NPC npc, Player player, Item item, NPC.HitInfo hit, int damageDone) |
Allows you to create special effects when an NPC is hit by a melee weapon. More... | |
virtual void | OnHitByProjectile (NPC npc, Projectile projectile, NPC.HitInfo hit, int damageDone) |
Allows you to create special effects when an NPC is hit by a projectile. More... | |
virtual void | OnHitNPC (NPC npc, NPC target, NPC.HitInfo hit) |
Allows you to create special effects when an NPC hits a friendly NPC. More... | |
virtual void | OnHitPlayer (NPC npc, Player target, Player.HurtInfo hurtInfo) |
Allows you to create special effects when an NPC hits a player (for example, inflicting debuffs). Only runs on the local client in multiplayer. More... | |
virtual void | OnKill (NPC npc) |
Allows you to make things happen when an NPC dies (for example, setting ModSystem fields). This hook runs on the server/single player. For client-side effects, such as dust, gore, and sounds, see HitEffect. Most item drops should be done via drop rules registered in ModifyNPCLoot(NPC, NPCLoot) or ModifyGlobalLoot(GlobalLoot). Some dynamic NPC drops, such as additional hearts, are more suited for OnKill instead. MinionBossMinion.csshows an example of an NPC that drops additional hearts. See NPC.lastInteraction and Player who killed NPC wiki sectionas well for determining which players attacked or killed this NPC. More... | |
virtual void | OnSpawn (NPC npc, IEntitySource source) |
Gets called when any NPC spawns in world | |
virtual void | PartyHatPosition (NPC npc, ref Vector2 position, ref SpriteEffects spriteEffects) |
virtual ? int | PickEmote (NPC npc, Player closestPlayer, List< int > emoteList, WorldUIAnchor otherAnchor) |
Allows you to change the emote that the NPC will pick More... | |
virtual void | PostAI (NPC npc) |
Allows you to determine how any NPC behaves. This will be called regardless of what PreAI returns. More... | |
virtual void | PostDraw (NPC npc, SpriteBatch spriteBatch, Vector2 screenPos, Color drawColor) |
Allows you to draw things in front of this NPC. Substract screenPos from the draw position before drawing. This method is called even if PreDraw returns false. More... | |
virtual bool | PreAI (NPC npc) |
Allows you to determine how any NPC behaves. Return false to stop the vanilla AI and the AI hook from being run. Returns true by default. More... | |
virtual bool | PreChatButtonClicked (NPC npc, bool firstButton) |
Allows you to determine if something can happen whenever a button is clicked on this NPC's chat window. The firstButton parameter tells whether the first button or second button (button and button2 from SetChatButtons) was clicked. Return false to prevent the normal code for this button from running. Returns true by default. More... | |
virtual bool | PreDraw (NPC npc, SpriteBatch spriteBatch, Vector2 screenPos, Color drawColor) |
Allows you to draw things behind an NPC, or to modify the way the NPC is drawn. Substract screenPos from the draw position before drawing. Return false to stop the game from drawing the NPC (useful if you're manually drawing the NPC). Returns true by default. More... | |
virtual bool | PreKill (NPC npc) |
Allows you to determine whether or not NPC from doing anything on death (besides die). Return false to stop the NPC from doing anything special. Returns true by default. More... | |
virtual void | ReceiveExtraAI (NPC npc, BitReader bitReader, BinaryReader binaryReader) |
Use this to receive information that was sent in SendExtraAI. Called whenever MessageID.SyncNPC is successfully received. Can be called on multiplayer clients. More... | |
virtual void | ResetEffects (NPC npc) |
This is where you reset any fields you add to your subclass to their default states. This is necessary in order to reset your fields if they are conditionally set by a tick update but the condition is no longer satisfied. More... | |
virtual void | SaveData (NPC npc, TagCompound tag) |
Allows you to save custom data for the given npc. NOTE: The provided tag is always empty by default, and is provided as an argument only for the sake of convenience and optimization. NOTE: Try to only save data that isn't default values. NOTE: The npc may be saved even if NeedSaving returns false and npc is not a townNPC, if another mod returns true on NeedSaving. More... | |
virtual void | SendExtraAI (NPC npc, BitWriter bitWriter, BinaryWriter binaryWriter) |
Use this judiciously to avoid straining the network. Checks and methods such as GlobalType<TEntity, TGlobal>.AppliesToEntity can reduce how much data must be sent for how many projectiles. Called whenever MessageID.SyncNPC is successfully sent, for example on NPC creation, on player join, or whenever NPC.netUpdate is set to true in the update loop for that tick. Can be called on the server. More... | |
virtual void | SetBestiary (NPC npc, BestiaryDatabase database, BestiaryEntry bestiaryEntry) |
Allows you to set an NPC's information in the Bestiary. More... | |
virtual void | SetDefaultsFromNetId (NPC npc) |
Called after SetDefaults for NPCs with a negative NPC.netID This hook is required because NPC.SetDefaultsFromNetId only sets NPC.netID after SetDefaults Remember that NPC.type does not support negative numbers and AppliesToEntity cannot distinguish between NPCs with the same type but different netID | |
sealed override void | SetupContent () |
virtual void | SetupTravelShop (int[] shop, ref int nextSlot) |
Allows you to add items to the traveling merchant's shop. Add an item by setting shop[nextSlot] to the ID of the item you are adding then incrementing nextSlot. In the end, nextSlot must have a value of 1 greater than the highest index in shop that represents an item ID. If you want to remove an item, you will have to be familiar with programming. More... | |
virtual void | SpawnNPC (int npc, int tileX, int tileY) |
Allows you to customize an NPC (for example, its position or ai array) after it naturally spawns and before it is synced between servers and clients. As of right now, this only works for modded NPCs. More... | |
virtual bool | SpecialOnKill (NPC npc) |
Allows you to call OnKill on your own when the NPC dies, rather then letting vanilla call it on its own. Returns false by default. More... | |
virtual void | TownNPCAttackCooldown (NPC npc, ref int cooldown, ref int randExtraCooldown) |
Allows you to determine the cooldown between each of a town NPC's attack. The cooldown will be a number greater than or equal to the first parameter, and less then the sum of the two parameters. More... | |
virtual void | TownNPCAttackMagic (NPC npc, ref float auraLightMultiplier) |
Allows you to control the brightness of the light emitted by a town NPC's aura when it performs a magic attack. Only used when the town NPC has an attack type of 2 (magic) More... | |
virtual void | TownNPCAttackProj (NPC npc, ref int projType, ref int attackDelay) |
Allows you to determine the projectile type of a town NPC's attack, and how long it takes for the projectile to actually appear. This hook is only used when the town NPC has an attack type of 0 (throwing), 1 (shooting), or 2 (magic). More... | |
virtual void | TownNPCAttackProjSpeed (NPC npc, ref float multiplier, ref float gravityCorrection, ref float randomOffset) |
Allows you to determine the speed at which a town NPC throws a projectile when it attacks. Multiplier is the speed of the projectile, gravityCorrection is how much extra the projectile gets thrown upwards, and randomOffset allows you to randomize the projectile's velocity in a square centered around the original velocity. This hook is only used when the town NPC has an attack type of 0 (throwing), 1 (shooting), or 2 (magic). More... | |
virtual void | TownNPCAttackShoot (NPC npc, ref bool inBetweenShots) |
Allows you to tell the game that a town NPC has already created a projectile and will still create more projectiles as part of a single attack so that the game can animate the NPC's attack properly. Only used when the town NPC has an attack type of 1 (shooting). More... | |
virtual void | TownNPCAttackStrength (NPC npc, ref int damage, ref float knockback) |
Allows you to determine the damage and knockback of a town NPC's attack before the damage is scaled. (More information on scaling in GlobalNPC.BuffTownNPCs.) More... | |
virtual void | TownNPCAttackSwing (NPC npc, ref int itemWidth, ref int itemHeight) |
Allows you to determine the width and height of the item a town NPC swings when it attacks, which controls the range of the NPC's swung weapon. Only used when the town NPC has an attack type of 3 (swinging). More... | |
virtual void | UpdateLifeRegen (NPC npc, ref int damage) |
Allows you to make the NPC either regenerate health or take damage over time by setting NPC.lifeRegen. This is useful for implementing damage over time debuffs such as BuffID.Poisoned or BuffID.OnFire. Regeneration or damage will occur at a rate of half of NPC.lifeRegen per second. Essentially, modders implementing damage over time debuffs should subtract from NPC.lifeRegen a number that is twice as large as the intended damage per second. See DamageOverTimeGlobalNPC.csfor an example of this. The damage parameter is the number that appears above the NPC's head if it takes damage over time. Multiple debuffs work together by following some conventions: NPC.lifeRegen should not be assigned a number, rather it should be subtracted from. damage should only be assigned if the intended popup text is larger then its current value. More... | |
Public Member Functions inherited from GlobalType< NPC, GlobalNPC > | |
virtual bool | AppliesToEntity (TEntity entity, bool lateInstantiation) |
Use this to control whether or not this global should be run on the provided entity instance. More... | |
virtual TGlobal | Clone (TEntity? from, TEntity to) |
Create a copy of this instanced global. Called when an entity is cloned. More... | |
TGlobal | Instance (TEntity entity) |
virtual ? TGlobal | NewInstance (TEntity target) |
Only called if GlobalType<TGlobal>.InstancePerEntity and AppliesToEntity(target , ...) are both true. Returning null is permitted but not recommended over AppliesToEntity for performance reasons. Only return null when the global is disabled based on some runtime property (eg world seed). More... | |
virtual void | SetDefaults (TEntity entity) |
Allows you to set the properties of any and every instance that gets created. | |
Additional Inherited Members | |
Static Public Member Functions inherited from GlobalType< NPC, GlobalNPC > | |
static TResult | GetGlobal< TResult > (int entityType, ReadOnlySpan< TGlobal > entityGlobals) |
static TResult | GetGlobal< TResult > (int entityType, ReadOnlySpan< TGlobal > entityGlobals, TResult baseInstance) |
static bool | TryGetGlobal< TResult > (int entityType, ReadOnlySpan< TGlobal > entityGlobals, out TResult result) |
static bool | TryGetGlobal< TResult > (int entityType, ReadOnlySpan< TGlobal > entityGlobals, TResult baseInstance, out TResult result) |
Protected Member Functions inherited from GlobalNPC | |
sealed override void | Register () |
override void | ValidateType () |
Protected Member Functions inherited from GlobalType< NPC, GlobalNPC > | |
override void | Register () |
If you make a new ModType, seal this override. | |
override void | ValidateType () |
Check for the correct overrides of different hook methods and fields and properties | |
Properties inherited from GlobalType< NPC, GlobalNPC > | |
virtual bool | CloneNewInstances [get] |
Whether to create new instances of this mod type via Clone or via the default constructor Defaults to false (default constructor). | |
abstract bool | ConditionallyAppliesToEntities [get] |
Whether this global applies to some entities but not others | |
sealed override bool | ConditionallyAppliesToEntities [get] |
Whether this global applies to some entities but not others. True if the type overrides AppliesToEntity(TEntity, bool) | |
virtual bool | InstancePerEntity [get] |
Whether to create a new instance of this Global for every entity that exists. Useful for storing information on an entity. Defaults to false. Return true if you need to store information (have non-static fields). | |
virtual bool | IsCloneable [get] |
Whether or not this type is cloneable. Cloning is supported if all reference typed fields in each sub-class which doesn't override Clone are marked with [CloneByReference] | |
short | PerEntityIndex [get, set] |
Index of this global in a IEntityWithGlobals<TGlobal>.EntityGlobals array -1 if this global does not have a SlotPerEntity | |
virtual bool | SlotPerEntity [get] |
If true, the global will be assigned a PerEntityIndex at load time, which can be used to access the instance in the IEntityWithGlobals<TGlobal>.EntityGlobals array. If false, the global will be a singleton applying to all entities | |
short | StaticIndex [get, set] |
Index of this global in the list of all globals of the same type, in registration order | |
This is a GlobalNPC native to tML that handles adding Pylon items to NPC's shops, to save on patch size within vanilla.
Allows you to modify the contents of a shop whenever player opens it.
If possible, use ModifyShop(NPCShop) instead, to reduce mod conflicts and improve compatibility. Note that for special shops like travelling merchant, the shopName may not correspond to a NPCShop in the NPCShopDatabase Also note that unused slots in items are null while Item.IsAir entries are entries that have a reserved slot (NPCShop.Entry.SlotReserved) but did not have their conditions met. These should not be overwritten.
npc | An instance of
|
shopName | The full name of the shop being opened. See NPCShopDatabase.GetShopName for the format. |
items | Items in the shop including 'air' items in empty slots. |
Reimplemented from GlobalNPC.