Project

General

Profile

Download (1.94 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataPENR_4.java @ ade99032

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2024 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
7
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
8
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.objectlib.metadata;
11

    
12
import org.distorted.objectlib.R;
13
import org.distorted.objectlib.objects.TwistyPenrose;
14

    
15
///////////////////////////////////////////////////////////////////////////////////////////////////
16

    
17
public class MetadataPENR_4 extends Metadata
18
  {
19
  public static int INDEX = 91;
20
  public MetadataPENR_4()         { super( TwistyPenrose.class, new int[] {4,4,4}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 24; }
22
  public int icon()               { return R.drawable.penr_4; }
23
  public boolean getActive()      { return false; }
24
  public int price()              { return 70; }
25
  public int extrasJson()         { return 0; }
26
  public int objectJson()         { return R.raw.penr_4_object; }
27
  public int mesh()               { return R.raw.penr_4; }
28
  public String getAuthor()       { return "Antonio Rubio"; }
29
  public int getYearOfInvention() { return 2018; }
30
  public float getDifficulty()    { return 3.51f; }
31
  public String getObjectName()   { return "Penrose 4x4"; }
32
  public boolean supportsAdjustableStickerColors()  { return false; }
33
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_FACE; }
34
  }
(76-76/96)