Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Investigating.
Additionally the board was updated so you can't get non-monster cards initially.
Head of Krampus, Smart Fly, Divorce Papers, 20/20, Red Candle, Rainbow Baby, Black Candle, Libra, Distant Admiration.
None of the character starting items (except for proglottid) are being rotated on a left click.
Also, there are still some active items that don't have the script either (like rainbow baby, libra, distant admiration, divorce papers, 20/20, head of krampus).
Tromble - They have been now. I haven't worked on this board in a while but I'm going back through and giving it the attention it needs. I eventually want to add a custom GUI so you'll be able to just click on the expansions you want and they'll automatically be added to the decks, as well as other customizations like extra players.
Give an option to make the coin bag limited to 100 cents, and move 3 cents into each active player bag at the beginning of the game (94 would be left in the bag in a 2 player game, 91 in a 3 player, and 87 in a 4 player) .
Edmund has answered in an FAQ that if the 100 cents run out, no one can gain any more money https://i.imgur.com/b5rHDIS.png
Secondly, if you can, change the name of this to "The Binding of Isaac: Four Souls [SCRIPTED]". My friends had trouble once or twice finding it because they used the word "isaac" in their search
Right click the card
Script editor of a card that is flipping
Copy the code to the card that doesn't (you'll notice the script is blank)
Code for those who can't find:
flipped = false
holdTime = 0
function onUpdate()
if self.held_by_color ~= nil then
holdTime = holdTime + 1
end
end
function onDrop()
if holdTime <= 20 then
flipped = not flipped
if flipped then
self.rotate({x=0, y=90, z=0})
else
self.rotate({x=0, y=-90, z=0})
end
end
holdTime = 0
end
I'll probably shrink them down so they don't appear when holding alt.
Good suggestion for death though, I'll probably add a skull or something similar.
Xord- This is already how it is. The game is by default just the base game, and expansions must be added in using the expansion bag.