Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataPYRA_3.java @ de830b16

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2023 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.TwistyPyraminx;
14

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

    
17
public class MetadataPYRA_3 extends Metadata
18
  {
19
  public static int INDEX = 20;
20
  public MetadataPYRA_3()         { super( TwistyPyraminx.class, new int[] {3,3,3,3}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 11; }
22
  public int icon()               { return R.drawable.pyra_3; }
23
  public int extrasJson()         { return R.raw.pyra_3_extras; }
24
  public int objectJson()         { return R.raw.pyra_3_object; }
25
  public int mesh()               { return R.raw.pyra_3; }
26
  public String getInventor()     { return "Uwe Meffert"; }
27
  public int getYearOfInvention() { return 1970; }
28
  public float getComplexity()    { return 1.5f; }
29
  public String getObjectName()   { return "Pyraminx"; }
30
  public int getCategory()        { return CATEGORY_SHAPE_TET | CATEGORY_AXIS_CORN; }
31
  }
(74-74/92)