mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-05 01:29:55 +00:00
52 lines
951 B
PHP
52 lines
951 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
-
|
|
/ \
|
|
/ \
|
|
/ PocketMine \
|
|
/ MP \
|
|
|\ @shoghicp /|
|
|
|. \ / .|
|
|
| .. \ / .. |
|
|
| .. | .. |
|
|
| .. | .. |
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
|
|
*/
|
|
|
|
|
|
class FuelData{
|
|
public static $duration = array(
|
|
COAL => 80,
|
|
TRUNK => 15,
|
|
WOODEN_PLANKS => 15,
|
|
SAPLING => 5,
|
|
WOODEN_AXE => 10,
|
|
WOODEN_PICKAXE => 10,
|
|
WOODEN_SWORD => 10,
|
|
WOODEN_SHOVEL => 10,
|
|
WOODEN_HOE => 10,
|
|
STICK => 5,
|
|
FENCE => 15,
|
|
FENCE_GATE => 15,
|
|
WOODEN_STAIRS => 15,
|
|
TRAPDOOR => 15,
|
|
WORKBENCH => 15,
|
|
BOOKSHELF => 15,
|
|
CHEST => 15,
|
|
BUCKET => 1000,
|
|
|
|
);
|
|
|
|
} |