Advertisement
Notrew3

Foots.php

May 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.33 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  * To change this license header, choose License Headers in Project Properties.
  5.  * To change this template file, choose Tools | Templates
  6.  * and open the template in the editor.
  7.  */
  8.  
  9. /**
  10.  * Description of Foots
  11.  *
  12.  * @author Positivo
  13.  */
  14. class Foots {
  15.  
  16.     private $foot_item_name;
  17.     private $foot_item_health_poits;
  18.     private $foot_item_damage;
  19.     private $foot_item_defense;
  20.     private $foot_item_dodge_chance;
  21.     private $foot_item_counter_chance;
  22.     private $foot_item_hit_chance;
  23.     private $foot_item_critical_damage_multiplier;
  24.     private $foot_item_critical_chance;
  25.  
  26.     function __construct($foot_item_name, $foot_item_health_poits, $foot_item_damage, $foot_item_defense, $foot_item_dodge_chance, $foot_item_counter_chance, $foot_item_hit_chance) {
  27.         $this->foot_item_name = $foot_item_name;
  28.         $this->foot_item_health_poits = $foot_item_health_poits;
  29.         $this->foot_item_damage = $foot_item_damage;
  30.         $this->foot_item_defense = $foot_item_defense;
  31.         $this->foot_item_dodge_chance = $foot_item_dodge_chance;
  32.         $this->foot_item_counter_chance = $foot_item_counter_chance;
  33.         $this->foot_item_hit_chance = $foot_item_hit_chance;
  34.     }
  35.  
  36.     function getFoot_item_name() {
  37.         return $this->foot_item_name;
  38.     }
  39.  
  40.     function getFoot_item_health_poits() {
  41.         return $this->foot_item_health_poits;
  42.     }
  43.  
  44.     function getFoot_item_damage() {
  45.         return $this->foot_item_damage;
  46.     }
  47.  
  48.     function getFoot_item_defense() {
  49.         return $this->foot_item_defense;
  50.     }
  51.  
  52.     function getFoot_item_dodge_chance() {
  53.         return $this->foot_item_dodge_chance;
  54.     }
  55.  
  56.     function getFoot_item_counter_chance() {
  57.         return $this->foot_item_counter_chance;
  58.     }
  59.  
  60.     function getFoot_item_hit_chance() {
  61.         return $this->foot_item_hit_chance;
  62.     }
  63.  
  64.     function getFoot_item_critical_damage_multiplier() {
  65.         return $this->foot_item_critical_damage_multiplier;
  66.     }
  67.  
  68.     function getFoot_item_critical_chance() {
  69.         return $this->foot_item_critical_chance;
  70.     }
  71.  
  72.     function setFoot_item_name($foot_item_name) {
  73.         $this->foot_item_name = $foot_item_name;
  74.     }
  75.  
  76.     function setFoot_item_health_poits($foot_item_health_poits) {
  77.         $this->foot_item_health_poits = $foot_item_health_poits;
  78.     }
  79.  
  80.     function setFoot_item_damage($foot_item_damage) {
  81.         $this->foot_item_damage = $foot_item_damage;
  82.     }
  83.  
  84.     function setFoot_item_defense($foot_item_defense) {
  85.         $this->foot_item_defense = $foot_item_defense;
  86.     }
  87.  
  88.     function setFoot_item_dodge_chance($foot_item_dodge_chance) {
  89.         $this->foot_item_dodge_chance = $foot_item_dodge_chance;
  90.     }
  91.  
  92.     function setFoot_item_counter_chance($foot_item_counter_chance) {
  93.         $this->foot_item_counter_chance = $foot_item_counter_chance;
  94.     }
  95.  
  96.     function setFoot_item_hit_chance($foot_item_hit_chance) {
  97.         $this->foot_item_hit_chance = $foot_item_hit_chance;
  98.     }
  99.  
  100.     function setFoot_item_critical_damage_multiplier($foot_item_critical_damage_multiplier) {
  101.         $this->foot_item_critical_damage_multiplier = $foot_item_critical_damage_multiplier;
  102.     }
  103.  
  104.     function setFoot_item_critical_chance($foot_item_critical_chance) {
  105.         $this->foot_item_critical_chance = $foot_item_critical_chance;
  106.     }
  107.  
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement