Project

General

Profile

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

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

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.TwistyCoinTetrahedron;
14
15
///////////////////////////////////////////////////////////////////////////////////////////////////
16
17 baa031e2 leszek
public class MetadataCOIN_3 extends Metadata
18 ae9d9227 leszek
  {
19 baa031e2 leszek
  public static int INDEX = 29;
20
  public MetadataCOIN_3()          { super( TwistyCoinTetrahedron.class, new int[] {3,3,3,3}, 0, null, INDEX ); }
21 ae9d9227 leszek
  public int numScrambles()        { return 15; }
22
  public int icon()                { return R.drawable.coin_3; }
23
  public int price()               { return 40; }
24
  public int objectVersion()       { return 2;  }
25 361fd0de leszek
  public int extrasJson()          { return R.raw.coin_3_extras; }
26
  public int objectJson()          { return R.raw.coin_3_object; }
27
  public int mesh()                { return R.raw.coin_3; }
28 71df2bd4 leszek
  public String getAuthor()        { return "Kevin Uhrik"; }
29 743cdab7 leszek
  public int getYearOfInvention()  { return 2019; }
30 71df2bd4 leszek
  public float getDifficulty()     { return 0.4f; }
31 743cdab7 leszek
  public String getObjectName()    { return "Coin Tetrahedron"; }
32 de830b16 leszek
  public int getCategory()         { return CATEGORY_SHAPE_TET | CATEGORY_AXIS_CORN | CATEGORY_COIN; }
33 ae9d9227 leszek
  }