PHP Classes

File: game/truthdare/settings.php

Recommend this page to a friend!
  Classes of Dave Smith   The Gameboard   game/truthdare/settings.php   Download  
File: game/truthdare/settings.php
Role: Configuration script
Content type: text/plain
Description: Configuration Settings
Class: The Gameboard
Implement a board game using the takeover strategy
Author: By
Last change:
Date: 6 years ago
Size: 759 bytes
 

Contents

Class file image Download
<?php
$this
->forceTile1Name = 'Truth';

$this->forceTile2Name = 'Dare';

$this->onFreeMsg = 'Take a break.';

$this->onForce1Msg = 'You have landed on '.$this->forceTile1Name;

$this->onForce2Msg = 'You have landed on '.$this->forceTile2Name;

$this->deck1 = array(
    array(
       
'title' => 'Transporting',
       
'action' => 'transport',
       
'value' => '',
       
'text' => 'You will being moved to a random tile. If that tile is owned, you must tell the truth',
    ),
);

$this->deck2 = array(
    array(
       
'title' => 'Transporting',
       
'action' => 'transport',
       
'value' => '',
       
'text' => 'You will being moved to a random tile. If that tile is owned, you must perform a dare',
    ),
);
?>