Project

General

Profile

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

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

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.TwistyCoinTetrahedron;
14

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

    
17
public class MetadataCOIN_3 extends Metadata
18
  {
19
  public static int INDEX = 29;
20
  public MetadataCOIN_3()          { super( TwistyCoinTetrahedron.class, new int[] {3,3,3,3}, 0, null, INDEX ); }
21
  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
  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
  public String getAuthor()        { return "Kevin Uhrik"; }
29
  public int getYearOfInvention()  { return 2019; }
30
  public float getDifficulty()     { return 0.4f; }
31
  public String getObjectName()    { return "Coin Tetrahedron"; }
32
  public int getCategory()         { return CATEGORY_SHAPE_TET | CATEGORY_AXIS_CORN | CATEGORY_COIN; }
33
  }
(13-13/96)