Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataDINO_3.java @ 33ba467a

1

    
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.TwistyDino6;
15

    
16
///////////////////////////////////////////////////////////////////////////////////////////////////
17

    
18
public class MetadataDINO_3 extends Metadata
19
  {
20
  public static int INDEX = 75;
21
  public MetadataDINO_3()         { super( TwistyDino6.class, new int[] {3,3,3,3}, 0, null, INDEX ); }
22
  public int numScrambles()       { return 10; }
23
  public int icon()               { return R.drawable.dino_3; }
24
  public int extrasJson()         { return R.raw.dino_3_extras; }
25
  public int objectJson()         { return R.raw.dino_3_object; }
26
  public int mesh()               { return R.raw.dino_3; }
27
  public String getAuthor()       { return "Robert Webb"; }
28
  public int getYearOfInvention() { return 1985; }
29
  public float getDifficulty()    { return 0.8f; }
30
  public String getObjectName()   { return "Dino Cube (6 color)"; }
31
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_CORN; }
32
  }
(42-42/96)