Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataPENR_2.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_2 extends Metadata
18
  {
19
  public static int INDEX = 89;
20
  public MetadataPENR_2()         { super( TwistyPenrose.class, new int[] {2,2,2}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 12; }
22
  public int icon()               { return R.drawable.penr_2; }
23
  public boolean getActive()      { return false; }
24
  public int price()              { return 40; }
25
  public int extrasJson()         { return 0; }
26
  public int objectJson()         { return R.raw.penr_2_object; }
27
  public int mesh()               { return R.raw.penr_2; }
28
  public String getAuthor()       { return "Zigor Martinez"; }
29
  public int getYearOfInvention() { return 2018; }
30
  public float getDifficulty()    { return 1.59f; }
31
  public String getObjectName()   { return "Penrose 2x2"; }
32
  public boolean supportsAdjustableStickerColors()  { return false; }
33
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_FACE; }
34
  }
(74-74/96)