Created
October 18, 2018 14:55
-
-
Save Chojiu15/d96d1e024d372f44f28e3c779430154a to your computer and use it in GitHub Desktop.
Shifumi Inidiana
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
<?php | |
$weapons = ['fists', 'whip', 'gun']; | |
$opponentWeapon = $weapons[rand(0,2)]; | |
if ($opponentWeapon == 'fists'){ | |
$indyWeapon = 'gun'; | |
} | |
elseif ($opponentWeapon == 'gun'){ | |
$indyWeapon = 'whip'; | |
} | |
else { | |
$indyWeapon = 'fists'; | |
} | |
echo "adversaire utilise $opponentWeapon"; | |
echo " alors indy utilse $indyWeapon"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment