Project

General

Profile

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

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

1 ae9d9227 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
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 baa031e2 leszek
public class MetadataPYRA_6 extends Metadata
18 ae9d9227 leszek
  {
19 baa031e2 leszek
  public static int INDEX = 23;
20
  public MetadataPYRA_6()         { super( TwistyPyraminx.class, new int[] {6,6,6,6}, 0, null, INDEX ); }
21 743cdab7 leszek
  public int numScrambles()       { return 33; }
22
  public int icon()               { return R.drawable.pyra_6; }
23
  public int price()              { return 70; }
24
  public int extrasJson()         { return R.raw.pyra_6_extras; }
25
  public int objectJson()         { return R.raw.pyra_6_object; }
26
  public int mesh()               { return 0; }
27 71df2bd4 leszek
  public String getAuthor()       { return "Timur Evbatyrov"; }
28 743cdab7 leszek
  public int getYearOfInvention() { return 2011; }
29 71df2bd4 leszek
  public float getDifficulty()    { return 3.21f; }
30 743cdab7 leszek
  public String getObjectName()   { return "Royal Pyraminx"; }
31 de830b16 leszek
  public int getCategory()        { return CATEGORY_SHAPE_TET | CATEGORY_AXIS_CORN; }
32 ae9d9227 leszek
  }