Guest User

Untitled

a guest
Nov 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. Vikings
  2. [M,M,M,B,B,C,J,C,B,B,M,M,M]
  3. [F,F,F,W,W,K,E,K,W,W,F,F,F]
  4. Saxons
  5.  
  6. To make matters easier, let's convert these walls into numbers:
  7. Round 0:
  8. M M M B B C J C B B M M M
  9. [8,8,8,6,6,10,15,10,6,6,8,8,8]
  10. [5,5,5,8,8,10,20,10,8,8,5,5,5]
  11. F F F W W K E K W W F F F
  12.  
  13. Round 1: Notice that 2 of the Saxons' warriors are adjacent to Knights, so they have a +1 damage bonus.
  14. M M M B B C J C B B M M M
  15. [7,7,7,4,3,8,14,8,3,4,7,7,7]
  16. | | | | | | || | | | | | |
  17. [4,4,4,5,5,8,18,8,5,5,4,4,4]
  18. F F F W W K E K W W F F F
  19.  
  20. Round 2:
  21. M M M B B C J C B B M M M
  22. [6,6,6,2,0,6,13,6,0,2,6,6,6]
  23. | | | | | | || | | | | | |
  24. [3,3,3,2,2,6,16,6,2,2,3,3,3]
  25. F F F W W K E K W W F F F
  26.  
  27. Round 3: Remember to collapse the arrays to account for dead warriors. Also, notice that the 2 outermost Fyrd are now attacking the diagonally adjacent viking.
  28. M M M B C J C B M M M
  29. [4,5,5,0,4,12,4,0,5,5,4]
  30. /| | | | | || | | | | |
  31. [2,2,2,1,0,4,14,4,0,1,2,2,2]
  32. F F F W W K E K W W F F F
  33.  
  34. Round 4: Notice once again the saxon Warriors next to the Knights dealing 3 damage:
  35. M M M C J C M M M
  36. [2,4,2,2,11,2,2,4,2]
  37. /| | | | || | | | |
  38. [1,1,1,0,2,12,2,0,1,1,1]
  39. F F F W K E K W F F F
  40. Round 5:
  41. M M M C J C M M M
  42. [0,3,2,0,10,0,2,3,0]
  43. | | | | || | | | |
  44. [1,0,0,0,10,0,0,0,1]
  45. F F F K E K F F F
  46.  
  47. Round 6:
  48. M M J M M
  49. [3,2,9,2,3]
  50. | | |
  51. [1,8,1]
  52. F E F
  53. Rounds 7, 8 and 9:
  54. M M J M M M M J M M M M J M M
  55. [3,1,8,1,3] [3,1,7,1,3] [3,1,8,1,3]
  56. | | | |/ |/
  57. [0,6,0] [4] [0]
  58. F E F E E
  59.  
  60. Output: Viking victory.
  61.  
  62. V: [M,M,B,C,B,C,J,C,B,C,B,M,M]
  63. S: [F,F,W,K,W,K,E,K,W,K,W,F,F]
  64. O: Viking victory.
  65. ------------------------------
  66. V: [M,M,M,M,M,M,M,M,M,M]
  67. S: [W,W,W,W,W,W,W,W,W,W]
  68. O: Saxon victory.
  69. ------------------------------
  70. V: [B,C,M,B,C,M,M,C,B,M,C,B,M]
  71. S: [W,F,W,F,E,E,E,F,W,F,W]
  72. O: Viking victory.
  73. ------------------------------
  74. V: [B,B,B,J,B,B,B]
  75. S: [W,W,W,W,K,K,K,E,K,K,K,W,W,W,W]
  76. O: Saxon victory.
  77. ------------------------------
  78. V: [J]
  79. S: [E]
  80. O: Viking victory.
  81. ------------------------------
  82. V: [C,C,C,C,B,B,M,M,M,M,J,J,J,M,M,M,M,B,B,C,C,C,C]
  83. S: [K,K,K,K,K,K,K,K,K,K,W,E,W,K,K,K,K,K,K,K,K,K,K]
  84. O: Saxon victory.
  85. ------------------------------
  86. V: [M,M,S,C,B,J,B,C,S,M,M]
  87. S: [F,K,P,W,K,E,K,W,P,K,F]
  88. O: Saxon victory.
  89. ------------------------------
  90. V: [S,S,S,...,S]
  91. S: [P,P,P,...,P]
  92. O: UNDEFINED (since both priests and skalds deal no damage, you can output anything here.)
  93. ------------------------------
Add Comment
Please, Sign In to add comment