I hereby claim:
- I am commoddity on github.
- I am commoddity (https://keybase.io/commoddity) on keybase.
- I have a public key whose fingerprint is F4EA 593F 85B7 595B C317 630D 9996 0043 65A1 7009
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let phase = 'main phase'; | |
| let saddlebackLagacInPlay = true; | |
| const castTurnToMist = () => { | |
| console.log('Player 1 casts Turn To Mist.'); | |
| console.log('Remove target creature from play.'); | |
| saddlebackLagacInPlay = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ping = () => { | |
| console.log('Deals one damage to player 1.'); | |
| exquisiteBlood(); | |
| }; | |
| const exquisiteBlood = () => { | |
| console.log('Player 1 lost one life. Player 2 gains one life.'); | |
| sanguineBond(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function castLightningBolt() { | |
| console.log('Player 1 casts Lightning Bolt!'); | |
| castCounterspell(); | |
| console.log('Lightning Bolt is countered and removed from the stack.'); | |
| } | |
| function castCounterspell() { | |
| console.log('Player 2 casts Counterspell, targeting Player 1\'s Lightning Bolt.'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| </style> | |
| </head> |