Subcategories
-
8 Topics201 Posts
-
53 Topics421 Posts
-
0 Votes7 Posts1k Views
-
0 Votes9 Posts2k Views
-
2 Votes8 Posts2k Views
-
3 Votes22 Posts6k Views
-
0 Votes39 Posts9k Views
-
0 Votes3 Posts1k Views
-
1 Votes12 Posts2k Views
-
3 Votes2 Posts1k Views
-
"java.lang.StringIndexOutofBoundException" when running AutoPlacement Finder...and something odd....
1
2 Votes5 Posts1k Views -
1 Votes4 Posts1k Views
-
1 Votes6 Posts2k Views
-
0 Votes4 Posts1k Views
-
2 Votes5 Posts1k Views
-
3 Votes6 Posts2k Views
-
2 Votes6 Posts1k Views
-
0 Votes3 Posts2k Views
-
4 Votes9 Posts6k Views
-
4 Votes7 Posts1k Views
-
5 Votes8 Posts5k Views
-
1 Votes10 Posts2k Views
Recent Posts
-
Is there a mechanic or attachment that allows a 0 attack unit to destroy a 0 defense construction?
The "trench", a 0 defense construction unit, could give the "conscript", a 0 attack unit, a plus 1 attack using support attachments. The problem with this is that the support should be applied only when the "trench" is defending and only the "conscript" is attacking.
<attachment name="supportAttachment_Trench" attachTo="trench" javaClass="UnitSupportAttachment" type="unitType"> <option name="faction" value="enemy"/> <option name="unitType" value="conscript"/> <option name="side" value="defence"/> <option name="dice" value="strength"/> <option name="bonus" value="1"/> <option name="number" value="1"/> <option name="bonusType" value="Trench"/> <option name="players" value="$All-Players$"/> </attachment>To do this a plus and minus support attachment would have to be created for every attacking/defending land unit to create a counter to the "trench".
<attachment name="supportAttachment_InfantryAttack" attachTo="infantry" javaClass="UnitSupportAttachment" type="unitType"> <option name="faction" value="allied"/> <option name="unitType" value="conscript"/> <option name="side" value="offence"/> <option name="dice" value="strength"/> <option name="bonus" value="1"/> <option name="number" value="-1"/> <!-- All positive supports are "Trench" --> <option name="bonusType" value="Trench"/> <option name="players" value="$All-Players$"/> </attachment> <attachment name="supportAttachment_InfantryAttackDebuf" attachTo="infantry" javaClass="UnitSupportAttachment" type="unitType"> <option name="faction" value="allied"/> <option name="unitType" value="conscript"/> <option name="side" value="offence"/> <option name="dice" value="strength"/> <option name="bonus" value="-1"/> <option name="number" value="-1"/> <!-- All negative supports are "Debuf" --> <option name="bonusType" value="Debuf"/> <option name="players" value="$All-Players$"/> </attachment> <attachment name="supportAttachment_InfantryDefend" attachTo="infantry" javaClass="UnitSupportAttachment" type="unitType"> <option name="faction" value="enemy"/> <option name="unitType" value="conscript"/> <option name="side" value="defence"/> <option name="dice" value="strength"/> <option name="bonus" value="1"/> <option name="number" value="-1"/> <!-- All positive supports are "Trench" --> <option name="bonusType" value="Trench"/> <option name="players" value="$All-Players$"/> </attachment> <attachment name="supportAttachment_InfantryDefendDebuf" attachTo="infantry" javaClass="UnitSupportAttachment" type="unitType"> <option name="faction" value="enemy"/> <option name="unitType" value="conscript"/> <option name="side" value="defence"/> <option name="dice" value="strength"/> <option name="bonus" value="-1"/> <option name="number" value="-1"/> <!-- All negative supports are "Debuf" --> <option name="bonusType" value="Debuf"/> <option name="players" value="$All-Players$"/> </attachment>It can get slightly complicated.
Cheers...
-
@TheDog You can create a support attachment that gives a bonus to the enemy.
-
@Ramon
The AI will have difficulty with a 0 Atk unit.
A 0-1-1 unit will be AI classified as a defensive unit so trying to get it to attack, will be hard.
AI wise better to have it as 1-1-1 unit.Have you considered increasing the dice to d8 instead of d6 ?
Many of my maps are d8, so that very weak & weak units can be Atk/Def 1 and 2.
-
Hi!
Thank you for your response!
The trench is designed to have 2 hit points for balancing purposes, its a defensive unit.
To be honest i dont know either why trenches have isSuicide, this map im currently working on is inspired by domination 1914 no mans land and i copied their trench design. I think i can just delete that part.~Ramon