Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Icehawk78

#1
Card Bugs / Ghost Town and Conspirator
24 October 2017, 11:00:57 PM
I had played Ghost Town during the previous Night phase, and during my following turn, played a single Herald and then a Conspirator. Given that Ghost Town doesn't appear to be an "Action Card", it shouldn't count towards Conspirator's 2-actions-previously-played limit to turn into a cantrip, but it did.

Game #8054099, Turn 10
#2
Game ID: #3478748

It appears that ending your turn with more Scheme topdecks available than action cards in play causes the game to freeze, not allowing you to either select cards to topdeck, or even just end your turn.
#3
This is still very much a work in progress, but it was suggested that I post this here, since the other two mods are also here.

King's Courtier is a Chrome Plugin that adds some extra functionality to the Shuffle iT site. Currently there are only two features, but more are in progress:


  • Kingdom Text View - This replaces all cards' images in the kingdom with their associated card text.
  • Repeat Kingdom Button - This adds a "Repeat Kingdom" button to the end of game scoring screen, which when clicked will set every card in the kingdom just played as a required card.

Download from here:  https://github.com/Icehawk78/kings_courtier/releases

Configuration:

I'm working on a screen that will let you change which options are active, but in the meantime, you can change the options by opening your Javascript Console (on Windows, ctrl-shift-j) and running this:

Turn off the text-view kingdom:
KC.update_preference('kingdom_text', false);

Turn off the repeat kingdom button:
KC.update_preference('show_repeat', false);
#4
General Discussion / [Mod] View Kingdom Card Text
13 January 2017, 08:09:57 AM
I'll preface this by saying that it currently looks fairly ugly, doesn't react well/at all when dealing with split/varied piles, and may not work if there any any semi-significant UI changes.

However, a friend I was playing with really missed the "view all kingdom cards at once" functionality that the old client had, so I hacked together a simple mod that can be run from your javascript console, which will replace all of the main kingdom cards' images with their description text. The process is rather painful, so this is more proof of concept than anything else:

1) Run this first:

angular.reloadWithDebugInfo()

2) This will cause your page to refresh, so you'll have to log in again afterwards. Once logged in, run this next:

var jquery = document.createElement('script');
  jquery.setAttribute('type', 'text/javascript');
  jquery.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js');
  document.head.appendChild(jquery);


3) This will not have any visible effect. Lastly, once you have a game with the kingdom loaded, and you will have to run this literally every time that you start a new game, run this:

$('[type="kingdom"]>.mini-card-art').css('background-color', 'white').css('background-image', '').toArray().forEach(e => {
var a = $('<div style="z-index: 100; position: absolute; left: 3%; top: 5%; min-width: 287px; text-align: center; min-height: 170px;">');
a.append(LANGUAGE.getCardText[angular.element(e).scope().pile.topCardName]);
$(e).append(a);
});


The end result should look something like this: