Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCrystal.java @ 743cdab7

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

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

    
17
public class MetadataCrystal extends Metadata
18
  {
19
  public MetadataCrystal()        { super( TwistyCrystal.class, new int[] {3,3,3,3,3,3}, 0, null ); }
20
  public int numScrambles()       { return 27; }
21
  public int icon()               { return R.drawable.crys_3; }
22
  public int price()              { return 70; }
23
  public int extrasJson()         { return R.raw.crys_3_extras; }
24
  public int objectJson()         { return R.raw.crys_3_object; }
25
  public int mesh()               { return R.raw.crys_3; }
26
  public String getInventor()     { return "Aleh Hladzilin"; }
27
  public int getYearOfInvention() { return 2006; }
28
  public float getComplexity()    { return 3.0f; }
29
  public String getObjectName()   { return "Pyraminx Crystal"; }
30
  }
(24-24/92)