During GOCHI’s pre-launch phase, players earn points rather than tokens. These points represent your future allocation of $TOKEN tokens when the project officially launches.

The token ticker is to be announced. $TOKEN is only used as an example.

How Points Work

Points Purpose

Points serve as a record of your early contribution and engagement with GOCHI, determining your share of the initial token allocation.

Think of points as your claim ticket for the $TOKEN token airdrop at launch.

Points vs. Tokens

Unlike tokens, points:

  • Cannot be transferred between accounts
  • Have no monetary value until converted
  • Exist only within the GOCHI platform
  • Are not tradable on exchanges

Points Generation Mechanics

Points are earned through pet care based on AI evaluation of:

  • Pet state quality (health, happiness, hunger, cleanliness)
  • Interaction frequency and consistency
  • Activity diversity and appropriateness

Base Point Calculation

// How points are calculated hourly
function calculateHourlyPoints(pet, player) {
  // Base rate of points per hour
  const baseRate = 10;
  
  // Quality multiplier based on pet state (0.5 to 3.0)
  const qualityMultiplier = calculateQualityMultiplier(pet);
  
  // Streak multiplier based on consecutive days (1.0 to 1.5)
  const streakMultiplier = 1.0 + Math.min(player.consecutiveDays * 0.05, 0.5);
  
  return baseRate * qualityMultiplier * streakMultiplier;
}

// Calculate quality multiplier based on pet stats
function calculateQualityMultiplier(pet) {
  // Average of all pet stats
  const avgStats = (pet.hunger + pet.happiness + 
                    pet.cleanliness + pet.energy) / 4;
  
  if (avgStats >= 90) return 3.0;      // Excellent care
  else if (avgStats >= 70) return 2.0; // Good care
  else if (avgStats >= 50) return 1.0; // Average care
  else if (avgStats >= 30) return 0.5; // Poor care
  else return 0.2;                     // Critical care
}

Quality Multiplier

Excellent Care

Multiplier: 3.0×

Requirement: Average stats ≥90%

Example: 10 base points × 3.0 = 30 points/hour

Good Care

Multiplier: 2.0×

Requirement: Average stats ≥70%

Example: 10 base points × 2.0 = 20 points/hour

Average Care

Multiplier: 1.0×

Requirement: Average stats ≥50%

Example: 10 base points × 1.0 = 10 points/hour

Streak Multiplier

The streak multiplier rewards consistent daily engagement:

StreakMultiplier = 1.0 + (ConsecutiveDays × 0.05), capped at 1.5
Consecutive DaysStreak MultiplierEffect on Points
11.05×+5%
51.25×+25%
10+1.5×+50% (maximum)

Logging in and caring for your pet every day builds a valuable streak multiplier. Even minimal care on busy days helps maintain your streak and earn extra points!

Pre-Launch Farming Limitations

To prevent excessive rewards during pre-launch:

Daily Points Cap

// Daily points cap increases with consecutive activity
function calculateDailyPointsCap(player) {
  // Base cap for new players
  const baseCap = 200;
  
  // Cap increases by 20 points per active day
  const increase = Math.min(player.daysActive * 20, 300);
  
  // Maximum daily cap is 500 points
  return Math.min(baseCap + increase, 500);
}

Total Pre-Launch Points Cap

TotalPointsCap = 10,000 + (ReferralsCount × 500), maximum 20,000

This allows dedicated players and effective promoters to earn more but establishes a reasonable ceiling.

Once you reach your total points cap, you can continue playing and caring for your pet, but you won’t earn additional points. Your care quality will still be tracked for gameplay progression and pet development.

Referral Program

Referral Process

Share your unique referral link with friends. They must:

  1. Create a GOCHI account
  2. Connect their wallet
  3. Maintain an active pet for at least 3 days

Referral Benefits

Each successful referral provides:

  • +5% to your point earning rate (up to +50%)
  • +500 to your total points cap (up to +5,000)
  • One-time bonus of 100 points

Milestone Rewards

ReferralsTotal Earning BoostCap IncreaseSpecial Reward
3+15%+1,500Unique pet accessory
5+25%+2,500Rare pet background
10+50%+5,000Exclusive pet variant

Token Conversion

When GOCHI officially launches, your points convert to $TOKEN tokens:

Individual Token Allocation = (Individual Points ÷ Total Points Pool) × 150,000,000

Allocation Protections

Minimum Guarantee

Any user with at least 100 points receives minimum 1,000 tokens, ensuring all active participants receive meaningful rewards.

Maximum Cap

No single user can receive more than 500,000 tokens (0.05% of supply), ensuring fair distribution.

Bonus Allocations

Leaderboard Bonuses

Top 10: +20% bonus allocation

Top 100: +15% bonus allocation

Top 500: +10% bonus allocation

Top 1,000: +5% bonus allocation

Early Adopter Bonuses

Week 1-2 participants: +20% bonus

Week 3-4 participants: +10% bonus

Week 5+ participants: Standard allocation

Strategic Tips

Daily Consistency

Log in daily to maintain your streak multiplier, even if you can only perform minimal pet care. The streak bonus compounds your earnings significantly.

Focus on Quality

Prioritize maintaining excellent pet stats (≥90%) for the maximum 3.0× quality multiplier, as this has the biggest impact on point generation.