Subcategories
-
8 Topics201 Posts
-
53 Topics421 Posts
-
0 Votes7 Posts1k Views
-
0 Votes11 Posts3k Views
-
4 Votes60 Posts20k Views
-
0 Votes25 Posts6k Views
-
0 Votes34 Posts11k Views
-
0 Votes11 Posts2k Views
-
0 Votes3 Posts545 Views
-
0 Votes28 Posts13k Views
-
0 Votes3 Posts1k Views
-
0 Votes13 Posts2k Views
-
0 Votes8 Posts1k Views
-
0 Votes3 Posts772 Views
-
0 Votes1 Posts500 Views
-
0 Votes6 Posts1k Views
-
1 Votes7 Posts2k Views
-
0 Votes55 Posts18k Views
-
0 Votes10 Posts2k Views
-
2 Votes6 Posts1k Views
-
1 Votes10 Posts2k Views
-
0 Votes5 Posts1k Views
Recent Posts
-
-can i make tech dice basically hit every time (so they hit at 1 or higher, basically you pay 20 ipcs for guarenteed tech unlock)
Hi
The answer is yes but I can't find an example at the moment. Roger, The Dog or the Master wc will clue you in most likely

but it has something to do with "rolls" and "chance' if i remember right.
From POS2

so something like that
-
found the marine!
<option name="isMarine" value="true"/>
sometimes it can be so easy
-
Hi WC!
Thanks a lot for your time and effort!
If i understand correctly you can basically give conscripts 1 attack, and make every unit (except trenches) debuff them with 1?
I have 2 more questions:
-can i make tech dice basically hit every time (so they hit at 1 or higher, basically you pay 20 ipcs for guarenteed tech unlock)
-for a unit such as a marine can i give it +1 amphibious attack?~Ramon
-
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...