X-Git-Url: https://git.auder.net/doc/screen_pairings_scoring.png?a=blobdiff_plain;f=js%2Frpsls.js;h=b22e5af3eb217306128dfb7e8f589b5492da9bf5;hb=594d0a382d1f37c2b631ff7420c345e86a0922dd;hp=cff3001a3403f0574a4da691cb7ae7232bc19f36;hpb=d666e77138bb5e3e397d68dbbddc28845c81068b;p=rpsls-bot.git diff --git a/js/rpsls.js b/js/rpsls.js index cff3001..b22e5af 100644 --- a/js/rpsls.js +++ b/js/rpsls.js @@ -4,11 +4,11 @@ const symbols = [ "Rock", "Lizard", "Spock", "Scissors", "Paper" ]; // Same order as in symbols const messages = [ - [ "=", "crushes", "is vaporized by", "cruches", "is covered by" ], - [ "is crushed by", "=", "poisons", "is decapitated by", "eats" ], - [ "vaporizes", "is poisoned by", "=", "smashes", "is disproved by" ], - [ "is crushed by", "decapitates", "is smashed by", "=", "cuts" ], - [ "covers", "is eaten by", "disproves", "is cut by", "=" ], + [ "can't win vs.", "crushes", "is vaporized by", "cruches", "is covered by" ], + [ "is crushed by", "can't win vs.", "poisons", "is decapitated by", "eats" ], + [ "vaporizes", "is poisoned by", "can't win vs.", "smashes", "is disproved by" ], + [ "is crushed by", "decapitates", "is smashed by", "can't win vs.", "cuts" ], + [ "covers", "is eaten by", "disproves", "is cut by", "can't win vs." ], ]; // Rewards matrix, order as in symbols @@ -113,5 +113,5 @@ new Vue({ imgSource: function(symbol) { return "img/" + symbol + ".png"; }, - }, + }, });