Files
TravianZ/GameEngine/Data/festival.php
T
novgorodschi catalin c7ba50036f Add (Admin Panel) : Multi-account detection, Push protection, Heatmap, Gold Shop and Blacklist user names
Add (Admin Panel) : Multi-account detection, Push protection, Heatmap, Gold Shop (redem codes), Blacklist user names and Quest Editor + fix some php notice

Fix quest_core for mission 33,36, train 2 units, etc (NEW TRIBE)

There are some temporary bugs that will be fixed in next commit (pagination for new heatmap, quest reward)
2026-07-16 11:09:48 +03:00

40 lines
2.0 KiB
PHP

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename : festival.php ##
## Type : Data Page for Festival ##
## --------------------------------------------------------------------------- ##
## Developed by : Shadow ##
## --------------------------------------------------------------------------- ##
## Contact : cata7007@gmail.com ##
## Project : TravianZ ##
## URLs: : https://travianz.org ##
## GitHub : https://github.com/Shadowss/TravianZ ##
## --------------------------------------------------------------------------- ##
## License : TravianZ Project ##
## Copyright : TravianZ (c) 2010-2026. All rights reserved. ##
## --------------------------------------------------------------------------- ##
#################################################################################
/**
* Mead-Festival definition (Brewery, building 35 — Teutons only)
* ---------------------------------------------------------------------------
* Unlike the Town Hall celebrations (Data/cel.php), the festival's duration
* is FIXED at 72 hours regardless of Brewery level — only the combat bonus
* percentage scales with level (see $bid35 in Data/buidata.php).
*
* 'time' is in seconds and is divided by SPEED at the point of use, exactly
* like the Town Hall celebration durations.
*/
$festival = [
'name' => 'Mead-Festival',
'wood' => 3870,
'clay' => 1680,
'iron' => 215,
'crop' => 10900,
'time' => 259200 // 72 hours
];
?>