Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataREX_3.java @ 52375039

1 ae9d9227 leszek
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.TwistyRex;
15
16
///////////////////////////////////////////////////////////////////////////////////////////////////
17
18 baa031e2 leszek
public class MetadataREX_3 extends Metadata
19 ae9d9227 leszek
  {
20 baa031e2 leszek
  public static int INDEX = 69;
21
  public MetadataREX_3()          { super( TwistyRex.class, new int[] {3,3,3,3}, 0, null, INDEX ); }
22 743cdab7 leszek
  public int numScrambles()       { return 19; }
23
  public int icon()               { return R.drawable.rex_3; }
24
  public int price()              { return 70; }
25
  public int extrasJson()         { return R.raw.rex_3_extras; }
26
  public int objectJson()         { return R.raw.rex_3_object; }
27
  public int mesh()               { return R.raw.rex_3; }
28 71df2bd4 leszek
  public String getAuthor()       { return "Andrew Cormier"; }
29 743cdab7 leszek
  public int getYearOfInvention() { return 2009; }
30 71df2bd4 leszek
  public float getDifficulty()    { return 3.46f; }
31 743cdab7 leszek
  public String getObjectName()   { return "Rex Cube"; }
32 de830b16 leszek
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_CORN; }
33 ae9d9227 leszek
  }