TripleA Logo TripleA Forum
    • TripleA Website
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Tags
    • Register
    • Login

    Middle Earth: Battle For Arda - Official Thread

    Scheduled Pinned Locked Moved Maps & Mods
    580 Posts 39 Posters 1.0m Views 39 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • HeppsH Offline
      Hepps Moderators
      last edited by

      The source of all things foul...

      0_1529325139702_Barad Dur.png

      "A joyous heart sours with the burden of expectation"
      Hepster

      1 Reply Last reply Reply Quote 4
      • alkexrA Offline
        alkexr
        last edited by

        While the relief map is being done, I'm working on some less spectacular stuff. After the territory effects rework, now units will be reworked. (At the same time, the game xml is going to be integrated with TagX, at least partially.)

        First of all, a new ability will be added: shield is the equivalent of armor, except it works against ranged units, as opposed to armor which works against melee units.

        Second, "axe cavalry" and similarly uncreative units are going to be replaced with more immersive ones. To this end all players will get more unique units, and generic units will become less prevalent.

        Northmen already have their new unit set (as well as new color):
        0_1529526331508_ecb75980-b7ae-4155-9cae-420b4a0cc8e7-image.png
        Sorry for the map graphics, everything got screwed up with the map changes, so I'm now stuck with this sh... stuck with whatever this is.

        0_1529526465016_6956273f-b8f2-41a7-81cd-f127479a6380-image.png

        The five new units are:

        • beorning warrior: 5 PUs, moves 2, 4 attack, 2 defense, 1 shield, has mountainwalk
        • woodman: 5 PUs, moves 2, 1 attack, 3 defense, 4 antiair, 2 ranged bonus, forest dweller
        • barding infantry: 7 PUs, moves 2, 3 attack, 4 defense, 2 formation, 2 armor, 2 shield
        • raider: 5 PUs, moves 2, 4 attack, 1 defense, 2 flank, raider
        • eotheod cavalry: 7 PUs, moves 4, 4 attack, 4 defense, 6 charge

        "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

        1 Reply Last reply Reply Quote 0
        • alkexrA Offline
          alkexr
          last edited by

          Development news

          Cave dweller was a bit underwhelming, as being a "creature" as opposed to heavy infantry gave you more bonus in a cave than being cave dweller, and caves are rather rare anyway. Now it gives +2 attack and defense instead of +1. Forest dweller has a similar problem, but there are more forest territories, so I'm still thinking about that.

          For mapmakers

          TagX has a new feature: it can do set operations. ˇ is "or", or join; ^ is "and", or intersection, ~ is "and not", or set difference / except.

          What this means is that now territory effects are done. Once and for all. No matter how many new units I add, I won't even have to touch territory effects, they will be implemented automagically. Heck, it can even handle fortification units with raider ability, lest I should decide to go full retard.

          This is just to demonstrate the full power of the dark side TagX.

          <attachment name="territoryEffectAttachment" attachTo="settlement" javaClass="games.strategy.triplea.attachments.TerritoryEffectAttachment" type="territoryEffect">
          		<option name="combatOffenseEffect" value="@((infantry^melee)~(armor1ˇarmor2ˇarmor3))~raider@" count="0"/>
          		<option name="combatDefenseEffect" value="@((infantry^melee)~(armor1ˇarmor2ˇarmor3))~garrison@" count="1"/>
          		<option name="combatOffenseEffect" value="@(infantry^melee)^(armor1ˇarmor2ˇarmor3)~raider@" count="1"/>
          		<option name="combatDefenseEffect" value="@(infantry^melee)^(armor1ˇarmor2ˇarmor3)~garrison@" count="2"/>
          		<option name="combatOffenseEffect" value="@(ranged^infantry)~raider@" count="0"/>
          		<option name="combatDefenseEffect" value="@(ranged^infantry)~garrison@" count="3"/>
          		<option name="combatOffenseEffect" value="@cavalry~raider@" count="-2"/>
          		<option name="combatDefenseEffect" value="@cavalry~garrison@" count="-1"/>
          		<option name="combatOffenseEffect" value="@creature~raider@" count="-1"/>
          		<option name="combatDefenseEffect" value="@creature~garrison@" count="-1"/>
          		<option name="combatOffenseEffect" value="@flying~raider@" count="-1"/>
          		<option name="combatDefenseEffect" value="@flying~garrison@" count="-1"/>
          		<option name="combatOffenseEffect" value="@fortification~raider@" count="0"/>
          		<option name="combatDefenseEffect" value="@fortification~garrison@" count="1"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^((infantry^melee)~(armor1ˇarmor2ˇarmor3))@" count="2"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^((infantry^melee)~(armor1ˇarmor2ˇarmor3))@" count="3"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^(infantry^melee)^(armor1ˇarmor2ˇarmor3)@" count="3"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^(infantry^melee)^(armor1ˇarmor2ˇarmor3)@" count="4"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^(ranged^infantry)@" count="2"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^(ranged^infantry)@" count="5"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^cavalry@" count="0"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^cavalry@" count="1"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^creature@" count="1"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^creature@" count="1"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^flying@" count="1"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^flying@" count="1"/>
          		<option name="combatOffenseEffect" value="@noneˇraider^fortification@" count="2"/>
          		<option name="combatDefenseEffect" value="@noneˇgarrison^fortification@" count="3"/>
          	</attachment>
          

          (Note: "none" is just a tag, and only one unit, named "none", has it. This is necessary to avoid empty lists.)

          "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

          1 Reply Last reply Reply Quote 1
          • alkexrA Offline
            alkexr
            last edited by

            Unit changes for Saruman:

            • dunlending wildman: 4 PUs, 2 move, 2/2 mountainwalk raider
            • halforc: 5 PUs, 2 move, 2/5, 3 formation
            • warg rider: 6? PUs, 4 move, 5/2, 4 charge
            • uruk warrior: 8 PUs, 3 move, 4/3, 2 armor, 1 shield, raider
            • uruk pikeman: PUs, 3 move, 4/6, 1 armor, 6 formation
            • crebain: some weak 1 hit air unit
            • wizard: idk really strong
            • fire of orthanc: 2 move, 0/0, suicide, a shitload of siege

            0_1529595598320_81c4bf8a-7b3c-4541-a6a1-e6cc61fba7ec-image.png

            "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

            1 Reply Last reply Reply Quote 0
            • HeppsH Offline
              Hepps Moderators
              last edited by

              The reliefs are all done. Here is a look at the Shires...

              0_1529846188519_Shires Example.png

              The colours are just cut and pasted from the original version with the map deatails on. So if you use the original Hex numbers in the Map Properties file everyting is more brilliant.

              "A joyous heart sours with the burden of expectation"
              Hepster

              1 Reply Last reply Reply Quote 1
              • HeppsH Offline
                Hepps Moderators
                last edited by

                Same thing with names and the PU & UP (reduced size)

                0_1529850225153_Shires Example with names.png

                "A joyous heart sours with the burden of expectation"
                Hepster

                redrumR C alkexrA 3 Replies Last reply Reply Quote 4
                • redrumR Offline
                  redrum Admin @Hepps
                  last edited by

                  @hepps Wow, looks awesome. Just need to redo those units now 🙂

                  TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                  HeppsH alkexrA 2 Replies Last reply Reply Quote 0
                  • C Offline
                    Cernel Moderators @Hepps
                    last edited by

                    @hepps Yeah, now you are putting the units image to shame.:face_without_mouth:

                    1 Reply Last reply Reply Quote 0
                    • HeppsH Offline
                      Hepps Moderators @redrum
                      last edited by

                      @redrum Let's just settle down for now. 😃 Perhaps once all the tweeking has been done to the map and a good balance has been achieved... we can examine the possibility of further enhancements.

                      Bear in mind that once I have gotten the thumbs up on the PU, UP and Names... I still have to design them all.

                      "A joyous heart sours with the burden of expectation"
                      Hepster

                      prastleP redrumR 2 Replies Last reply Reply Quote 1
                      • prastleP Offline
                        prastle Moderators Admin @Hepps
                        last edited by

                        @hepps But you live for this! It is your purpose in life! 🙂

                        If we open a quarrel between past and present, we shall find that we have lost the future! Sir Winston Churchill

                        1 Reply Last reply Reply Quote 0
                        • redrumR Offline
                          redrum Admin @Hepps
                          last edited by

                          @hepps Fair enough. My thoughts:

                          • PUs and UPs look great
                          • I like the name font though is it possible to give them a bit more outline? Feel like they fade into some of the backgrounds a bit (ex. Tuckborough). Just an idea.

                          TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                          HeppsH alkexrA 2 Replies Last reply Reply Quote 0
                          • HeppsH Offline
                            Hepps Moderators @redrum
                            last edited by

                            @redrum Yup. Same thoughts here. I am working on a variation with it slightly bolder right now.

                            "A joyous heart sours with the burden of expectation"
                            Hepster

                            1 Reply Last reply Reply Quote 0
                            • alkexrA Offline
                              alkexr @Hepps
                              last edited by

                              @hepps The territory names and PUs are nice. The orange UP numbers are a bit hard to tell apart at a glance.

                              If you start doing PUs and unit production, keep in mind that I will change them for quite a few territories as soon as the new units are done and balancing starts, and they will be subject to modification throughout the beta period, especially PUs.

                              As for territory names, I will change some of them too. I'm going to send you a list of territory names that are new, changed or have unusual spelling.

                              "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                              HeppsH 1 Reply Last reply Reply Quote 0
                              • alkexrA Offline
                                alkexr @redrum
                                last edited by

                                @redrum said in Large Middle Earth - official thread:

                                I like the name font though is it possible to give them a bit more outline? Feel like they fade into some of the backgrounds a bit (ex. Tuckborough).

                                They are fine on the full-sized image, I think.

                                "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                                1 Reply Last reply Reply Quote 0
                                • HeppsH Offline
                                  Hepps Moderators
                                  last edited by

                                  Here is my revision...

                                  0_1529854294995_Shires Example with names V2.png

                                  "A joyous heart sours with the burden of expectation"
                                  Hepster

                                  alkexrA 2 Replies Last reply Reply Quote 0
                                  • alkexrA Offline
                                    alkexr @Hepps
                                    last edited by

                                    @hepps I like that red line. Can we have more of that?

                                    "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                                    HeppsH 1 Reply Last reply Reply Quote 0
                                    • HeppsH Offline
                                      Hepps Moderators @alkexr
                                      last edited by

                                      @alkexr LOL... as far as what? The line is meant to simply separate the two versions of the territory names.

                                      Where exactly would you like to see it used?

                                      "A joyous heart sours with the burden of expectation"
                                      Hepster

                                      alkexrA 1 Reply Last reply Reply Quote 0
                                      • alkexrA Offline
                                        alkexr @Hepps
                                        last edited by

                                        @hepps Like so ;D
                                        0_1529854523060_5d4c61a2-d5ef-4909-9c74-43a2e17e46dc-image.png

                                        "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                                        1 Reply Last reply Reply Quote 0
                                        • HeppsH Offline
                                          Hepps Moderators @alkexr
                                          last edited by

                                          @alkexr I have designed all the PU from 1 through 12 as per the original game design... as long as I know what upper limits you plan to use... I can add more in without issue.

                                          You are going to be the one doing all the plotting and placement for the PU, UP and Names if it is to be done the official way. I emphatically refuse as it is an extraordinary waste of time... I did it for CCLXX and that is the VERY LAST time I will ever do such a ridiculous exercise.

                                          "A joyous heart sours with the burden of expectation"
                                          Hepster

                                          1 Reply Last reply Reply Quote 1
                                          • alkexrA Offline
                                            alkexr @Hepps
                                            last edited by

                                            @hepps Anyway...

                                            So I'm not sure it is necessary to change the territory names. But if I try to reverse the situation, and imagine that the question is whether or not the new names should be changed to the original names, I can't think of any reason to do that. So it's just status quo bias on my behalf: the new names are better.

                                            As for placement of stuff: I'll just write a program where I can place this stuff instead of having to manually edit the placement files. I have done it manually once for this map, that was enough for me too 🙂 I'll also write a better placement picker I think. Not now, though, this will have to wait until around August, barring miracles.

                                            "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                                            HeppsH 3 Replies Last reply Reply Quote 1

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 28
                                            • 29
                                            • 6 / 29
                                            • First post
                                              Last post
                                            Copyright © 2016-2018 TripleA-Devs | Powered by NodeBB Forums