Page 5 of 5

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Mon Jul 15, 2024 5:39 pm
by Stratego (dev)
new spec:

Code: Select all

IS_MOVEMENT_NEEDS_OPERATOR,   // if the unit can not move unless it is carrying someone (its movement 0 when not carrying anyone)
IS_INDESTRUCTABLE, //can not be deleted manually even if it is owned by player (using unit delete button)

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Wed Jul 24, 2024 1:17 pm
by makazuwr32
Stratego (dev) wrote: Mon Jul 15, 2024 5:39 pm new spec:

Code: Select all

IS_INDESTRUCTABLE, //can not be deleted manually even if it is owned by player (using unit delete button)
It doesn't make unit immune to regular damage, right?

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Wed Jul 24, 2024 7:55 pm
by Stratego (dev)
makazuwr32 wrote: Wed Jul 24, 2024 1:17 pm
Stratego (dev) wrote: Mon Jul 15, 2024 5:39 pm new spec:

Code: Select all

IS_INDESTRUCTABLE, //can not be deleted manually even if it is owned by player (using unit delete button)
It doesn't make unit immune to regular damage, right?
not, but by name it should - maybe will

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Fri Sep 20, 2024 8:37 pm
by Stratego (dev)
new spec:
IS_TECH_NOT_STEALABLE, //The tech will not be stealable, neither by spies nor by occupying.

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Thu Nov 14, 2024 5:33 pm
by Stratego (dev)
new specs:

Code: Select all

        TECH_REPEATABLE, // the tech is not added  to already-invented techs list -> so it is re-inventable (more like an effect than real tech).
        TECH_AFFECTS_WHEN_RESEARCHED, //this tech will only affect actually existing units (so a newly trained unit will not be affected) (more like an effect than real tech).
        TECH_RESEARCHED_IN_PARALLEL, //this tech (needs to be TECH_REPEATABLE kind) can be invented in multiple factories at the same time (as they are some kind of local effects)


        EXECUTE_EFFECTS_ON_SPAWN, //the trnEffectsToExecute contains effects to run. on spawn or on inventing it, these will be executed in that order.

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Sat Dec 28, 2024 4:17 pm
by Stratego (dev)
new spec:

Code: Select all

NO_PROD_SPEEDUP, //mercenary abilities can not speed up invention/production of this tech or unit

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Fri Jan 17, 2025 8:47 pm
by Stratego (dev)
new specs:

Code: Select all

        TECH_DEPENDENT_NOT_LISTED, // (use only with depeloer approval!) part of AGE techs feature: if a unit is dependant on this (not owned) tech (eg. age tech) than unit is not listed for production 
        TECH_ON_INVENT_PLAYERS_NOTIFIED, // (use only with depeloer approval!) part of AGE techs feature: if a unit needs notification to all players that this tech is invented.  

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Mon May 19, 2025 7:56 pm
by Stratego (dev)
new spec:

Code: Select all

        IS_UNIQUE_PRODUCING,      // Units/Techs of this type can not be invented in parallel, so if a IS_UNIQUE_PRODUCING is in progress than another IS_UNIQUE_PRODUCING type can not start

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Sun May 25, 2025 6:31 pm
by Stratego (dev)
new spec:

Code: Select all


HAS_INVENTORY, // hero units can have inventory, or chests

NO_PLAYER_SKINNABLE, //Player will not be able to manually skin this unit (eg. hero units in RPG maps)

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Wed Jun 11, 2025 5:34 am
by Stratego (dev)
new spec:

Code: Select all

CAN_MOVE_MULTI,               // it can move multiple times until movement points all consumed.

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Thu Jan 29, 2026 9:05 pm
by Stratego (dev)
new sepc:

Code: Select all

ATTACK_ACCURACY_DECR_BY_DIST,  //The powerAccuracyPenalty will be multiplied with distance of TARGET unit (up to the 50% attack range the unit will be most accurate with the defined value, all other tiles doubles the penalty percent)

Re: Unit Design - Unit Propery sheet - Spec unit actions

Posted: Tue Mar 31, 2026 10:18 am
by Stratego (dev)
new spec:

Code: Select all

AI_NOT_OCCUPIES, //this building is (probably) occupiable, but AI will not run to occupy (AOMW decorative buildings), so with very low priority this will be handled to occupy (but only !if they are NEUTRAL!).