Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataMPYR_3.java @ baa031e2

1

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

    
11
package org.distorted.objectlib.metadata;
12

    
13
import org.distorted.objectlib.R;
14
import org.distorted.objectlib.objects.TwistyMirrorPyraminx;
15

    
16
///////////////////////////////////////////////////////////////////////////////////////////////////
17

    
18
public class MetadataMPYR_3 extends Metadata
19
  {
20
  public static int INDEX = 85;
21
  public MetadataMPYR_3()         { super( TwistyMirrorPyraminx.class, new int[] {3,3,3,3}, 0, null, INDEX); }
22
  public int numScrambles()       { return 11; }
23
  public int icon()               { return R.drawable.mpyr_3; }
24
  public boolean getActive()      { return false; }
25
  public int price()              { return 30; }
26
  public int extrasJson()         { return 0; }
27
  public int objectJson()         { return R.raw.mpyr_3_object; }
28
  public int mesh()               { return R.raw.mpyr_3; }
29
  public String getInventor()     { return "Ryan Allsop"; }
30
  public int getYearOfInvention() { return 2012; }
31
  public float getComplexity()    { return 2.02f; }
32
  public String getObjectName()   { return "Mirror Pyraminx"; }
33
  }
(68-68/92)