Added "The Wraith Collection" (16) set.

This commit is contained in:
marcins78@gmail.com
2012-02-07 15:44:58 +00:00
parent 8317a21a78
commit 822114709e
2 changed files with 3 additions and 3 deletions

View File

@@ -51,12 +51,12 @@ public class LotroServer extends AbstractServer {
// Hunters have 1-194 normal cards, 9 "O" cards, and 3 extra to cover the different culture versions of 15_60 // Hunters have 1-194 normal cards, 9 "O" cards, and 3 extra to cover the different culture versions of 15_60
final int[] cardCounts = new int[]{129, 365, 122, 122, 365, 128, 128, 365, 122, 52, 122, 266, 203, 203, 15, 206}; final int[] cardCounts = new int[]{129, 365, 122, 122, 365, 128, 128, 365, 122, 52, 122, 266, 203, 203, 15, 206, 6};
Thread thr = new Thread( Thread thr = new Thread(
new Runnable() { new Runnable() {
public void run() { public void run() {
for (int i = 0; i <= 15; i++) { for (int i = 0; i <= 16; i++) {
for (int j = 1; j <= cardCounts[i]; j++) { for (int j = 1; j <= cardCounts[i]; j++) {
String blueprintId = i + "_" + j; String blueprintId = i + "_" + j;
try { try {

View File

@@ -165,7 +165,7 @@
$(document).ready( $(document).ready(
function() { function() {
$("#latestNews").append("<b>Sets 01-15 are available to play.</b> " $("#latestNews").append("<b>Sets 01-16 are available to play.</b> "
+ "If you find any problems with specific card or rules in general, please report it <a href='http://lotrtcgdb.com/forums/index.php/topic,7592.0.html'>at the TLHH forums</a>."); + "If you find any problems with specific card or rules in general, please report it <a href='http://lotrtcgdb.com/forums/index.php/topic,7592.0.html'>at the TLHH forums</a>.");
var chat = new ChatBoxUI("Game Hall", $("#chat"), "/gemp-lotr/server", true); var chat = new ChatBoxUI("Game Hall", $("#chat"), "/gemp-lotr/server", true);