1
0
Fork 0
mirror of https://github.com/Findus23/plugin-ProfileAvatar.git synced 2024-09-19 15:23:45 +02:00
plugin-ProfileAvatar/Generators/BirdAvatar.php

24 lines
513 B
PHP
Raw Normal View History

2020-05-20 10:41:04 +02:00
<?php
namespace Piwik\Plugins\ProfileAvatar\Generators;
/**
* based on cat-avatar-generator by David Revoy
* Artwork license: https://creativecommons.org/licenses/by/4.0/
*/
class BirdAvatar extends MonsterIDBase
{
public $size = 240;
protected $path = "CatAvatar/Bird";
protected $partTemplate = [
'tail' => [1, 9],
'hoop' => [1, 9],
'body' => [1, 9],
'wing' => [1, 9],
'eyes' => [1, 9],
'bec' => [1, 9],
'accessorie' => [1, 20]
];
}